Package org.multiverse.api.exceptions
Class PanicError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- org.multiverse.api.exceptions.PanicError
-
- All Implemented Interfaces:
java.io.Serializable
public class PanicError extends java.lang.Error
AnError
thrown when the state of theStm
has been compromised. Normally this exception should never happen.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description PanicError(java.lang.String message)
Creates a new PanicError with the provided message.PanicError(java.lang.String message, java.lang.Throwable cause)
Creates a new PanicError with the provided message and cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PanicError
public PanicError(java.lang.String message)
Creates a new PanicError with the provided message.- Parameters:
message
- the message of the PanicError.
-
PanicError
public PanicError(java.lang.String message, java.lang.Throwable cause)
Creates a new PanicError with the provided message and cause.- Parameters:
message
- the message of the PanicError.cause
- the cause of the PanicError.
-
-