FileDocCategorySizeDatePackage
ImageFormatException.javaAPI DocJava SE 6 API1910Tue Jun 10 00:21:50 BST 2008com.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
1.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