FileDocCategorySizeDatePackage
ImageFormatException.javaAPI DocJava SE 5 API1912Fri Aug 26 14:54:40 BST 2005com.sun.image.codec.jpeg

ImageFormatException

public class ImageFormatException extends RuntimeException
Signals that an Image Format exception of some sort has occurred.

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.

author
Tom Sausner
see
JPEGImageEncoder
see
JPEGImageDecoder
since
JDK1.2

Fields Summary
Constructors Summary
public ImageFormatException()
Constructs an ImageFormatException with no detail message.

	super();
    
public ImageFormatException(String s)
Constructs an ImageFormatException with the specified detailed message.

param
s the message.

	super(s);
    
Methods Summary