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