Package java.security
Class NoSuchAlgorithmException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.security.GeneralSecurityException
-
- java.security.NoSuchAlgorithmException
-
- All Implemented Interfaces:
Serializable
public class NoSuchAlgorithmException extends GeneralSecurityException
NoSuchAlgorithmExceptionindicates that a requested algorithm could not be found.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoSuchAlgorithmException()Constructs a new instance ofNoSuchAlgorithmException.NoSuchAlgorithmException(String msg)Constructs a new instance ofNoSuchAlgorithmExceptionwith the given message.NoSuchAlgorithmException(String message, Throwable cause)Constructs a new instance ofNoSuchAlgorithmExceptionwith the given message and the cause.NoSuchAlgorithmException(Throwable cause)Constructs a new instance ofNoSuchAlgorithmExceptionwith the cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NoSuchAlgorithmException
public NoSuchAlgorithmException(String msg)
Constructs a new instance ofNoSuchAlgorithmExceptionwith the given message.- Parameters:
msg- the detail message for this exception.
-
NoSuchAlgorithmException
public NoSuchAlgorithmException()
Constructs a new instance ofNoSuchAlgorithmException.
-
NoSuchAlgorithmException
public NoSuchAlgorithmException(String message, Throwable cause)
Constructs a new instance ofNoSuchAlgorithmExceptionwith the given message and the cause.- Parameters:
message- the detail message for this exception.cause- the exception which is the cause for this exception.
-
NoSuchAlgorithmException
public NoSuchAlgorithmException(Throwable cause)
Constructs a new instance ofNoSuchAlgorithmExceptionwith the cause.- Parameters:
cause- the exception which is the cause for this exception.
-
-