001package Torello.JavaDoc.Messager;
002
003/**
004 * This Java {@code Error}-Type is thrown when the number of errors encountered has reached a
005 * specified maximum limit.  This class provides only one, parameterless, constructor because the
006 * only purpose of this throwable is to actually throw, and halt execution of the application.
007 */
008public class ReachedMaxErrors extends Error
009{
010    /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */
011    public static final long serialVersionUID = 1;
012
013    /** This {@code Error}-Class only Constructor */
014    public ReachedMaxErrors()
015    { super(); }
016}