- NoSuchAlgorithmException - Exception in java.security
-
This exception is thrown when a particular cryptographic algorithm is
requested but is not available in the environment.
- NoSuchAlgorithmException() - Constructor for exception java.security.NoSuchAlgorithmException
-
Constructs a NoSuchAlgorithmException with no detail
message.
- NoSuchAlgorithmException(String) - Constructor for exception java.security.NoSuchAlgorithmException
-
Constructs a NoSuchAlgorithmException with the specified
detail message.
- NoSuchAlgorithmException(String, Throwable) - Constructor for exception java.security.NoSuchAlgorithmException
-
Creates a NoSuchAlgorithmException
with the specified
detail message and cause.
- NoSuchAlgorithmException(Throwable) - Constructor for exception java.security.NoSuchAlgorithmException
-
Creates a NoSuchAlgorithmException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).