public class NoSuchAlgorithmException extends GeneralSecurityException
NoSuchAlgorithmException
indicates that a requested algorithm could
not be found.Constructor and Description |
---|
NoSuchAlgorithmException()
Constructs a new instance of
NoSuchAlgorithmException . |
NoSuchAlgorithmException(String msg)
Constructs a new instance of
NoSuchAlgorithmException with the
given message. |
NoSuchAlgorithmException(String message,
Throwable cause)
Constructs a new instance of
NoSuchAlgorithmException with the
given message and the cause. |
NoSuchAlgorithmException(Throwable cause)
Constructs a new instance of
NoSuchAlgorithmException with the
cause. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public NoSuchAlgorithmException(String msg)
NoSuchAlgorithmException
with the
given message.msg
- the detail message for this exception.public NoSuchAlgorithmException()
NoSuchAlgorithmException
.public NoSuchAlgorithmException(String message, Throwable cause)
NoSuchAlgorithmException
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 NoSuchAlgorithmException(Throwable cause)
NoSuchAlgorithmException
with the
cause.cause
- the exception which is the cause for this exception.