public class SystemException extends AbstractRuntimeException
Constructor and Description |
---|
SystemException(String message)
Construct a
SystemException with the specified detail message. |
SystemException(String message,
Throwable cause)
Construct a
SystemException with the specified detail message and nested exception. |
getMessage, getRootCause
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public SystemException(String message)
SystemException
with the specified detail message.message
- the detail message (which is saved for later retrieval by the AbstractRuntimeException.getMessage()
method).public SystemException(String message, Throwable cause)
SystemException
with the specified detail message and nested exception.message
- the detail message (which is saved for later retrieval by the AbstractRuntimeException.getMessage()
method).cause
- the cause (which is saved for later retrieval by the Throwable.getCause()
method). (A null
value is permitted, and indicates that the cause is nonexistent or unknown.).Copyright (c) 2020, SAS Institute Inc., Cary, NC, USA