Package com.sas.lsaf.core
Class SystemException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.sas.lsaf.core.AbstractRuntimeException
com.sas.lsaf.core.SystemException
- All Implemented Interfaces:
Serializable
A generic runtime error thrown when a more specific exception does not exist.
- Since:
- 1.1
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSystemException(String message) Construct aSystemExceptionwith the specified detail message.SystemException(String message, Throwable cause) Construct aSystemExceptionwith the specified detail message and nested exception. -
Method Summary
Methods inherited from class com.sas.lsaf.core.AbstractRuntimeException
getMessage, getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SystemException
Construct aSystemExceptionwith the specified detail message.- Parameters:
message- the detail message (which is saved for later retrieval by theAbstractRuntimeException.getMessage()method).
-
SystemException
Construct aSystemExceptionwith the specified detail message and nested exception.- Parameters:
message- the detail message (which is saved for later retrieval by theAbstractRuntimeException.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.).
-