ProviderExceptionpublic class ProviderException extends RuntimeException A runtime exception for Provider exceptions (such as
misconfiguration errors or unrecoverable internal errors),
which may be subclassed by Providers to
throw specialized, provider-specific runtime errors. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public ProviderException()Constructs a ProviderException with no detail message. A
detail message is a String that describes this particular
exception.
super();
| public ProviderException(String s)Constructs a ProviderException with the specified detail
message. A detail message is a String that describes this
particular exception.
super(s);
| public ProviderException(String message, Throwable cause)Creates a ProviderException with the specified
detail message and cause.
super(message, cause);
| public ProviderException(Throwable cause)Creates a ProviderException with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause).
super(cause);
|
|