Package Torello.Java
Class CacheError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- Torello.Java.CacheError
-
- All Implemented Interfaces:
java.io.Serializable
public class CacheError extends java.lang.Error
This error is thrown by theHiLiteMe.Cache
class, and it could potentially be used for any type of Cache Error.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/Java/CacheError.java
- Open New Browser-Tab: Torello/Java/CacheError.java
File Size: 1,793 Bytes Line Count: 50 '\n' Characters Found
-
-
Field Summary
Fields Modifier and Type Field static long
serialVersionUID
-
-
-
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;
-
-