public class ProviderException extends RuntimeException
ProviderException is a general exception, thrown by security Providers.Provider,
Serialized Form| Constructor and Description |
|---|
ProviderException()
Constructs a new instance of
ProviderException. |
ProviderException(String msg)
Constructs a new instance of
ProviderException with the given
message. |
ProviderException(String message,
Throwable cause)
Constructs a new instance of
ProviderException with the given
message and the cause. |
ProviderException(Throwable cause)
Constructs a new instance of
ProviderException with the cause. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ProviderException(String msg)
ProviderException with the given
message.msg - the detail message for this exception.public ProviderException()
ProviderException.public ProviderException(String message, Throwable cause)
ProviderException with the given
message and the cause.message - the detail message for this exception.cause - the exception which is the cause for this exception.public ProviderException(Throwable cause)
ProviderException with the cause.cause - the exception which is the cause for this exception.