public class SystemFaultException extends TaskException
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
COPYRIGHT |
Constructor and Description |
---|
SystemFaultException()
Constructs an exception object.
|
SystemFaultException(java.lang.String message)
Constructs an exception object from the error message passed.
|
SystemFaultException(java.lang.String key,
java.lang.Object[] vars)
Deprecated.
Use
SystemFaultException(String, Object[], String) instead. |
SystemFaultException(java.lang.String key,
java.lang.Object[] vars,
java.lang.String id)
Constructs an exception object with the specified message key and remembers
the values of the message variables passed.
|
SystemFaultException(java.lang.String key,
java.lang.Object[] vars,
java.lang.String id,
java.lang.Throwable cause)
Constructs an exception object with the specified message key and exception and
remembers the values of the message variables passed.
|
SystemFaultException(java.lang.String key,
java.lang.Object[] vars,
java.lang.Throwable cause)
Deprecated.
|
SystemFaultException(java.lang.String catalog,
java.lang.String key,
java.lang.Object[] vars,
java.lang.String id,
java.lang.Throwable cause)
Constructs an exception object with the specified message key and exception and
remembers the values of the message variables passed.
|
SystemFaultException(java.lang.String message,
java.lang.Throwable nested)
Constructs an exception object from the error message and the exception passed.
|
SystemFaultException(java.lang.Throwable nested)
Constructs an exception object from the exception passed.
|
getCause, getMessage, getMessage, getMessageID, getMessageKey, getMessageVariables, getRootCause, printStackTrace, printStackTrace, printStackTrace
public static final java.lang.String COPYRIGHT
public SystemFaultException(java.lang.String message)
message
- The error message.public SystemFaultException(java.lang.String message, java.lang.Throwable nested)
message
- The error message.nested
- The exception that was thrown.public SystemFaultException(java.lang.Throwable nested)
nested
- The exception that was thrown.public SystemFaultException(java.lang.String key, java.lang.Object[] vars, java.lang.String id)
key
- The message key.vars
- The values of the message variables. Can be an empty array. If the array contains objects,
they must be Serializable.id
- The message id.public SystemFaultException(java.lang.String key, java.lang.Object[] vars, java.lang.String id, java.lang.Throwable cause)
key
- The message key.vars
- The values of the message variables. Can be an empty array. If the array contains objects,
they must be Serializable.id
- The message id.cause
- The exception that was thrown.public SystemFaultException(java.lang.String catalog, java.lang.String key, java.lang.Object[] vars, java.lang.String id, java.lang.Throwable cause)
catalog
- The catalog which have to be used to retrieve the message.key
- The message key.vars
- The values of the message variables. Can be an empty array. If the array contains objects,
they must be Serializable.id
- The message id.cause
- The exception that was thrown.public SystemFaultException(java.lang.String key, java.lang.Object[] vars)
SystemFaultException(String, Object[], String)
instead.key
- The message key.vars
- The values of the message variables. Can be an empty array. If the array contains objects,
they must be Serializable.public SystemFaultException(java.lang.String key, java.lang.Object[] vars, java.lang.Throwable cause)
SystemFaultException(String, Object[], String, Throwable)
instead.key
- The message key.vars
- The values of the message variables. Can be an empty array. If the array contains objects,
they must be Serializable.cause
- The exception that was thrown.public SystemFaultException()