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:
java.io.Serializable
public class SystemException extends AbstractRuntimeException
A generic runtime error thrown when a more specific exception does not exist.- Since:
- 1.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SystemException(java.lang.String message)
Construct aSystemException
with the specified detail message.SystemException(java.lang.String message, java.lang.Throwable cause)
Construct aSystemException
with the specified detail message and nested exception.
-
Method Summary
-
Methods inherited from class com.sas.lsaf.core.AbstractRuntimeException
getMessage, getRootCause
-
-
-
-
Constructor Detail
-
SystemException
public SystemException(java.lang.String message)
Construct aSystemException
with the specified detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by theAbstractRuntimeException.getMessage()
method).
-
SystemException
public SystemException(java.lang.String message, java.lang.Throwable cause)
Construct aSystemException
with 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). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.).
-
-