public class EntrustLogicError
extends java.lang.RuntimeException
When encountered, please report this problem to Entrust Support.
| Constructor and Description |
|---|
EntrustLogicError()
A constructor; creates a new
EntrustLogicError that
contains a default detail message. |
EntrustLogicError(java.lang.String additionalDetailMessage)
A constructor; creates a new
EntrustLogicError that
contains the additional detail message prefixed by the default detail
message. |
EntrustLogicError(java.lang.String message,
java.lang.Throwable cause)
A constructor; creates a new
EntrustLogicError that
contains the additional detail message prefixed by the default detail
message and the provided cause. |
EntrustLogicError(java.lang.Throwable cause)
A constructor; creates a new
EntrustLogicError that
contains the the default detail message and the provided cause. |
public EntrustLogicError()
EntrustLogicError that
contains a default detail message.
The cause is not initialized, and may subsequently be initialized by a
call to Throwable.initCause(java.lang.Throwable).
public EntrustLogicError(java.lang.String additionalDetailMessage)
EntrustLogicError that
contains the additional detail message prefixed by the default detail
message.
The cause is not initialized, and may subsequently be initialized by a
call to Throwable.initCause(java.lang.Throwable).
additionalDetailMessage - the additional detail message. The detail message (composed of
the default details message followed by the additional detail
message) is saved for later retrieval by the
Throwable.getMessage() method.public EntrustLogicError(java.lang.String message,
java.lang.Throwable cause)
EntrustLogicError that
contains the additional detail message prefixed by the default detail
message and the provided cause.
Note that the detail message associated with cause is
not automatically incorporated in this error's detail message.
additionalDetailMessage - the additional detail message. The detail message (composed of
the default details message followed by the additional detail
message) is saved for later retrieval by the
Throwable.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.)public EntrustLogicError(java.lang.Throwable cause)
EntrustLogicError that
contains the the default detail message and the provided cause.
Note that the detail message associated with cause is
not automatically incorporated in this error's detail message.
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.)