📄 imageformatexception.java
字号:
/* * @(#)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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -