iccprofileinvalidexception.java

来自「jpeg2000编解码」· Java 代码 · 共 41 行

JAVA
41
字号
/***************************************************************************** * * $Id: ICCProfileInvalidException.java,v 1.1.1.1 2002/08/02 09:47:03 grosbois Exp $ * * Copyright Eastman Kodak Company, 343 State Street, Rochester, NY 14650 * $Date $ *****************************************************************************/package icc;/** * This exception is thrown when the content of an an icc profile  * is in someway incorrect. *  * @see		jj2000.j2k.icc.ICCProfile * @version	1.0 * @author	Bruce A. Kern */public class ICCProfileInvalidException extends ICCProfileException {    /**     * Contruct with message     *   @param msg returned by getMessage()     */    ICCProfileInvalidException (String msg) {        super (msg); }    /**     * Empty constructor     */    ICCProfileInvalidException () {        super ("icc profile is invalid"); }        /* end class ICCProfileInvalidException */ }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?