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 long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description UnrecognizedImageExtException()
Constructs aUnrecognizedImageExtException
with no detail message.UnrecognizedImageExtException(String message)
Constructs aUnrecognizedImageExtException
with the specified detail 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 theSerializable
Implementation 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.Exception
andjava.lang.Error
classes implement theSerializable interface
, and a warning-free build expects this field be defined here.- See Also:
- Constant Field Values
- Code:
- Exact Field Declaration Expression:
public static final long serialVersionUID = 1;
-
-
Constructor Detail
-
UnrecognizedImageExtException
public UnrecognizedImageExtException()
Constructs aUnrecognizedImageExtException
with no detail message.
-
UnrecognizedImageExtException
public UnrecognizedImageExtException(java.lang.String message)
Constructs aUnrecognizedImageExtException
with the specified detail message.- Parameters:
message
- the detail message.
-
-