public class BadLogicException extends ProviderContractException
| Constructor and Description |
|---|
BadLogicException(java.lang.String msg)
Constructs a
BadLogicException with the specified
detail message. |
BadLogicException(java.lang.String msg,
java.lang.Throwable t)
Constructs a
BadLogicException with the specified
detail message and cause. |
BadLogicException(java.lang.Throwable t)
Constructs a
BadLogicException with the specified
cause and a detail message of
cause.toString() which typically contains the class and
detail message of cause. |
public BadLogicException(java.lang.String msg)
BadLogicException with the specified
detail message. The error message string msg can
later be retrieved by the getMessage() method of
Throwable.msg - the error messagepublic BadLogicException(java.lang.String msg,
java.lang.Throwable t)
BadLogicException 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 BadLogicException(java.lang.Throwable t)
BadLogicException 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