imageformatexception.java

来自「JAVA 所有包」· Java 代码 · 共 55 行

JAVA
55
字号
/* * @(#)ImageFormatException.java	1.10 06/04/07 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. *//* ******************************************************************** ********************************************************************** ********************************************************************** *** COPYRIGHT (c) Eastman Kodak Company, 1997                      *** *** As  an unpublished  work pursuant to Title 17 of the United    *** *** States Code.  All rights reserved.                             *** ********************************************************************** ********************************************************************** **********************************************************************/package com.sun.image.codec.jpeg;/** * Signals that an Image Format exception of some sort has occurred.  * <p> * Note that the classes in the com.sun.image.codec.jpeg package are not * part of the core Java APIs.  They are a part of Sun's JDK and JRE * distributions.  Although other licensees may choose to distribute these * classes, developers cannot depend on their availability in non-Sun * implementations.  We expect that equivalent functionality will eventually * be available in a core API or standard extension. * <p> * * @author  Tom Sausner * @see     JPEGImageEncoder * @see     JPEGImageDecoder * @since   1.2 */publicclass ImageFormatException extends RuntimeException {    /**     * Constructs an <code>ImageFormatException</code> with no detail message.      */    public ImageFormatException() {	super();    }    /**     * Constructs an <code>ImageFormatException</code> with the specified     * detailed message.      *     * @param   s   the message.     */    public ImageFormatException(String s) {	super(s);    }}

⌨️ 快捷键说明

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