cmmexception.java
来自「JAVA基本类源代码,大家可以学习学习!」· Java 代码 · 共 43 行
JAVA
43 行
/* * @(#)CMMException.java 1.10 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. *//* * @(#)JavaCMMException.java @(#)JavaCMMException.java 1.2 11/04/97 Created by gbp, October 25, 1997 * *//********************************************************************** ********************************************************************** ********************************************************************** *** COPYRIGHT (c) Eastman Kodak Company, 1997 *** *** As an unpublished work pursuant to Title 17 of the United *** *** States Code. All rights reserved. *** ********************************************************************** ********************************************************************** **********************************************************************/package java.awt.color;/** * This exception is thrown if the native CMM returns an error. */public class CMMException extends java.lang.RuntimeException { /** * Constructs a CMMException with the specified detail message. * @param s the specified detail message */ public CMMException (String s) { super (s); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?