Package Torello.HTML.Tools.Images
Class UnrecognizedImageExtException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- Torello.HTML.Tools.Images.UnrecognizedImageExtException
-
- All Implemented Interfaces:
java.io.Serializable
public class UnrecognizedImageExtException extends java.lang.RuntimeException
This exception may be used when a particular file or file-name cannot be mapped to an actual Image-Format byenum-ClassIF.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/HTML/Tools/Images/UnrecognizedImageExtException.java
- Open New Browser-Tab: Torello/HTML/Tools/Images/UnrecognizedImageExtException.java
File Size: 755 Bytes Line Count: 22 '\n' Characters Found
-
-
Field Summary
Fields Modifier and Type Field static longserialVersionUID
-
Constructor Summary
Constructors Constructor UnrecognizedImageExtException()UnrecognizedImageExtException(String message)
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
This fulfils the SerialVersion UID requirement for all classes that implement Java'sinterface java.io.Serializable. Using theSerializableImplementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.
Note that Java'sjava.lang.Exceptionandjava.lang.Errorclasses implement theSerializable interface, and a warning-free build expects this field be defined here.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UnrecognizedImageExtException
public UnrecognizedImageExtException()
Constructs aUnrecognizedImageExtExceptionwith no detail message.
-
UnrecognizedImageExtException
public UnrecognizedImageExtException(java.lang.String message)
Constructs aUnrecognizedImageExtExceptionwith the specified detail message.- Parameters:
message- the detail message.
-
-