Package org.reldb.wrapd.exceptions
Class FatalException
java.lang.Object
java.lang.Throwable
java.lang.Error
org.reldb.wrapd.exceptions.FatalException
- All Implemented Interfaces:
java.io.Serializable
public class FatalException
extends java.lang.Error
This exception is thrown when fatal errors are encountered.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description FatalException(java.lang.String message)
Create an ExceptionFatal.FatalException(java.lang.String message, java.lang.Throwable cause)
Create an ExceptionFatal. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
FatalException
public FatalException(java.lang.String message)Create an ExceptionFatal.- Parameters:
message
- Message associated with this error.
-
FatalException
public FatalException(java.lang.String message, java.lang.Throwable cause)Create an ExceptionFatal.- Parameters:
message
- Message associated with this error.cause
- Throwable cause of this error.
-