001package Torello.JavaDoc.SyntaxHiLite;
002
003/**
004 * This is intended to function 
005 */
006public class PygmentizeError extends Error 
007{
008    /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */
009    protected static final long serialVersionUID = 1L;
010
011
012    /** Constructs a {@code PygmentizeError} with no detail message. */
013    public PygmentizeError()
014    { super(); }
015
016    /**
017     * Constructs a {@code PygmentizeError} with the specified detail message.
018     * @param message the detail message.
019     */
020    public PygmentizeError(String message)
021    { super(message); }
022
023    /**
024     * Constructs a new exception with the specified detail message and cause.
025     * 
026     * <BR /><BR /><B CLASS=JDDescLabel>NOTE:</B>
027     * 
028     * <BR /><BR />The detail message associated with cause is not automatically incorporated into
029     * this exception's detail message.
030     * 
031     * @param message The detail message (which is saved for later retrieval by the
032     * {@code Throwable.getMessage()} method).
033     * 
034     * @param cause the cause (which is saved for later retrieval by the
035     * {@code Throwable.getCause()} method). (A null value is permitted, and indicates that the
036     * cause is nonexistent or unknown.)
037     */
038    public PygmentizeError(String message, Throwable cause)
039    { super(message, cause); }
040
041    /**
042     * Constructs a new exception with the specified cause and a detail message of
043     * {@code (cause==null ? null : cause.toString())} (which typically contains the class and
044     * detail message of cause).
045     * 
046     * <BR /><BR />This constructor is useful for exceptions that are little more than wrappers for
047     * other throwables.
048     * 
049     * @param cause The cause (which is saved for later retrieval by the
050     * {@code Throwable.getCause()} method). (A null value is permitted, and indicates that the
051     * cause is nonexistent or unknown.)
052     */
053    public PygmentizeError(Throwable cause)
054    { super(cause); }
055
056}