Package Torello.JavaDoc.Messager
Class MessagerGeneratedError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- Torello.JavaDoc.Messager.MessagerGeneratedError
-
- All Implemented Interfaces:
java.io.Serializable
public class MessagerGeneratedError extends java.lang.Error
This JavaError
-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 theMessager's
generated & printed output text. Thusly, this class is an extremely limited & reduced Error-Type.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/JavaDoc/Messager/MessagerGeneratedError.java
- Open New Browser-Tab: Torello/JavaDoc/Messager/MessagerGeneratedError.java
File Size: 850 Bytes Line Count: 19 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field static long
serialVersionUID
-
Constructor Summary
Constructors Constructor MessagerGeneratedError()
-
-
-
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 theSerializable
Implementation 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.Exception
andjava.lang.Error
classes 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
-
MessagerGeneratedError
public MessagerGeneratedError()
ThisError
-Class only Constructor
-
-