NoSuchProviderExceptionpublic class NoSuchProviderException extends GeneralSecurityException This exception is thrown when a particular security provider is
requested but is not available in the environment. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public NoSuchProviderException()Constructs a NoSuchProviderException with no detail message. A
detail message is a String that describes this particular
exception.
super();
| public NoSuchProviderException(String msg)Constructs a NoSuchProviderException with the specified detail
message. A detail message is a String that describes this
particular exception.
super(msg);
|
|