Package Torello.JavaDoc.Messager
Class ReachedMaxErrors
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- Torello.JavaDoc.Messager.ReachedMaxErrors
-
- All Implemented Interfaces:
java.io.Serializable
public class ReachedMaxErrors extends java.lang.Error
This JavaError-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.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/JavaDoc/Messager/ReachedMaxErrors.java
- Open New Browser-Tab: Torello/JavaDoc/Messager/ReachedMaxErrors.java
File Size: 592 Bytes Line Count: 16 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field static longserialVersionUID
-
Constructor Summary
Constructors Constructor ReachedMaxErrors()
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
This fulfils the SerialVersion UID requirement for all classes that implement Java'sinterface java.io.Serializable. Using theSerializableImplementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.
Note that Java'sjava.lang.Exceptionandjava.lang.Errorclasses implement theSerializable interface, and a warning-free build expects this field be defined here.- See Also:
- Constant Field Values
- Code:
- Exact Field Declaration Expression:
public static final long serialVersionUID = 1;
-
-
Constructor Detail
-
ReachedMaxErrors
public ReachedMaxErrors()
ThisError-Class only Constructor
-
-