1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 | package Torello.JavaDoc.Messager;
/**
* This Java {@code Error}-Type is thrown when the number of errors encountered has reached a
* specified maximum limit. This class provides only one, parameterless, constructor because the
* only purpose of this throwable is to actually throw, and halt execution of the application.
*/
public class ReachedMaxErrors extends Error
{
/** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */
public static final long serialVersionUID = 1;
/** This {@code Error}-Class only Constructor */
public ReachedMaxErrors()
{ super(); }
}
|