001package Torello.JavaDoc.Messager;
002
003/**
004 * This Java {@code Error}-Type is thrown after printing an Error-Message to the UNIX Output
005 * Terminal.  This class provides only one, parameterless, constructor because the only purpose 
006 * of this throwable is to actually throw, and halt execution of the application.  Providing 
007 * information about the nature of the error which has occurred would already have been
008 * accomplished by the {@link Messager Messager's} generated & printed output text.  Thusly,
009 * this class is an extremely limited & reduced Error-Type.
010 */
011public class MessagerGeneratedError extends Error
012{
013    /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */
014    public static final long serialVersionUID = 1;
015
016    /** This {@code Error}-Class only Constructor */
017    public MessagerGeneratedError()
018    { super(); }
019}