Top Description Fields Constructors
java.security

public Class NoSuchProviderException

extends GeneralSecurityException
Class Inheritance

This exception is thrown when a particular security provider is requested but is not available in the environment.
Author
Benjamin Renaud
Since
1.1

Field Summary

Modifier and TypeField and Description
private static final long

Constructor Summary

AccessConstructor and Description
public
NoSuchProviderException()

Constructs a NoSuchProviderException with no detail message.

public
NoSuchProviderException(String
the detail message.
msg
)

Constructs a NoSuchProviderException with the specified detail message.

Field Detail

serialVersionUIDback to summary
private static final long serialVersionUID

Hides java.security.GeneralSecurityException.serialVersionUID.

Annotations
@Serial

Constructor Detail

NoSuchProviderExceptionback to summary
public NoSuchProviderException()

Constructs a NoSuchProviderException with no detail message. A detail message is a String that describes this particular exception.

NoSuchProviderExceptionback to summary
public NoSuchProviderException(String msg)

Constructs a NoSuchProviderException with the specified detail message. A detail message is a String that describes this particular exception.

Parameters
msg:String

the detail message.