Package Torello.JavaDoc.Messager
Class AssertFail
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- Torello.JavaDoc.Messager.AssertFail
-
- All Implemented Interfaces:
java.io.Serializable
public class AssertFail extends java.lang.Error
- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/JavaDoc/Messager/AssertFail.java
- Open New Browser-Tab: Torello/JavaDoc/Messager/AssertFail.java
File Size: 448 Bytes Line Count: 11 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field protected static long
serialVersionUID
-
Constructor Summary
Constructors Constructor AssertFail()
AssertFail(String message)
AssertFail(String message, Throwable cause)
-
-
-
Field Detail
-
serialVersionUID
protected 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:
protected static final long serialVersionUID = 1L;
-
-
Constructor Detail
-
AssertFail
public AssertFail()
-
AssertFail
public AssertFail(java.lang.String message)
-
AssertFail
public AssertFail(java.lang.String message, java.lang.Throwable cause)
-
-