Package java.security
Class InvalidAlgorithmParameterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
java.security.InvalidAlgorithmParameterException
- All Implemented Interfaces:
Serializable
public class InvalidAlgorithmParameterException extends GeneralSecurityException
InvalidAlgorithmParameterException indicates the occurrence of
invalid algorithm parameters.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description InvalidAlgorithmParameterException()Constructs a new instance ofInvalidAlgorithmParameterException.InvalidAlgorithmParameterException(String msg)Constructs a new instance ofInvalidAlgorithmParameterExceptionwith the given message.InvalidAlgorithmParameterException(String message, Throwable cause)Constructs a new instance ofInvalidAlgorithmParameterExceptionwith the given message and the cause.InvalidAlgorithmParameterException(Throwable cause)Constructs a new instance ofInvalidAlgorithmParameterExceptionwith 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 Details
-
InvalidAlgorithmParameterException
Constructs a new instance ofInvalidAlgorithmParameterExceptionwith the given message.- Parameters:
msg- the detail message for this exception.
-
InvalidAlgorithmParameterException
public InvalidAlgorithmParameterException()Constructs a new instance ofInvalidAlgorithmParameterException. -
InvalidAlgorithmParameterException
Constructs a new instance ofInvalidAlgorithmParameterExceptionwith the given message and the cause.- Parameters:
message- the detail message for this exception.cause- the exception which is the cause for this exception.
-
InvalidAlgorithmParameterException
Constructs a new instance ofInvalidAlgorithmParameterExceptionwith the cause.- Parameters:
cause- the exception which is the cause for this exception.
-