001package Torello.HTML.Tools.Images;
002
003/**
004 * This exception may be used when a particular file or file-name cannot be mapped to an
005 * actual Image-Format by {@code enum}-Class {@link IF}.
006 */
007public class UnrecognizedImageExtException extends RuntimeException
008{
009    /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */
010    public static final long serialVersionUID = 1;
011
012    /** Constructs a {@code UnrecognizedImageExtException} with no detail message. */
013    public UnrecognizedImageExtException()
014    { super(); }
015
016    /**
017     * Constructs a {@code UnrecognizedImageExtException} with the specified detail message.
018     * @param message the detail message.
019     */
020    public UnrecognizedImageExtException(String message)
021    { super(message); }
022}