1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | package Torello.JavaDoc.Messager;
/**
* This Java {@code Error}-Type is thrown after printing an Error-Message to the UNIX Output
* Terminal. This class provides only one, parameterless, constructor because the only purpose
* of this throwable is to actually throw, and halt execution of the application. Providing
* information about the nature of the error which has occurred would already have been
* accomplished by the {@link Messager Messager's} generated & printed output text. Thusly,
* this class is an extremely limited & reduced Error-Type.
*/
public class MessagerGeneratedError extends Error
{
/** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */
public static final long serialVersionUID = 1;
/** This {@code Error}-Class only Constructor */
public MessagerGeneratedError()
{ super(); }
}
|