public class OperationalException extends OsidException
| Constructor and Description |
|---|
OperationalException(java.lang.String msg)
Constructs a
OperationalException with the specified
detail message. |
OperationalException(java.lang.String msg,
java.lang.Throwable t)
Constructs a
OperationalException with the specified
detail message and cause. |
OperationalException(java.lang.Throwable t)
Constructs a
OperationalException with the specified
cause and a detail message of
cause.toString() which typically contains the class and
detail message of cause. |
public OperationalException(java.lang.String msg)
OperationalException with the specified
detail message. The error message string msg can
later be retrieved by the getMessage() method of
Throwable.msg - the error messagepublic OperationalException(java.lang.String msg,
java.lang.Throwable t)
OperationalException with the specified
detail message and cause. The error message string msg can
later be retrieved by the getMessage() method of
Throwable.msg - the error messaget - the cause of the exceptionpublic OperationalException(java.lang.Throwable t)
OperationalException with the specified
cause and a detail message of
cause.toString() which typically contains the class and
detail message of cause.t - the cause of the exception