1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 | package Torello.HTML.Tools.Images;
/**
* This exception may be used when a particular file or file-name cannot be mapped to an
* actual Image-Format by {@code enum}-Class {@link IF}.
*/
public class UnrecognizedImageExtException extends RuntimeException
{
/** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */
public static final long serialVersionUID = 1;
/** Constructs a {@code UnrecognizedImageExtException} with no detail message. */
public UnrecognizedImageExtException()
{ super(); }
/**
* Constructs a {@code UnrecognizedImageExtException} with the specified detail message.
* @param message the detail message.
*/
public UnrecognizedImageExtException(String message)
{ super(message); }
}
|