FileDocCategorySizeDatePackage
InvalidAlgorithmParameterException.javaAPI DocAndroid 1.5 API2517Wed May 06 22:41:06 BST 2009java.security

InvalidAlgorithmParameterException

public class InvalidAlgorithmParameterException extends GeneralSecurityException
{@code InvalidAlgorithmParameterException} indicates the occurrence of invalid algorithm parameters.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public InvalidAlgorithmParameterException(String msg)
Constructs a new instance of {@code InvalidAlgorithmParameterException} with the given message.

param
msg the detail message for this exception.
since
Android 1.0


                                           
       
        super(msg);
    
public InvalidAlgorithmParameterException()
Constructs a new instance of {@code InvalidAlgorithmParameterException}.

since
Android 1.0

    
public InvalidAlgorithmParameterException(String message, Throwable cause)
Constructs a new instance of {@code InvalidAlgorithmParameterException} with the given message and the cause.

param
message the detail message for this exception.
param
cause the exception which is the cause for this exception.
since
Android 1.0

        super(message, cause);
    
public InvalidAlgorithmParameterException(Throwable cause)
Constructs a new instance of {@code InvalidAlgorithmParameterException} with the cause.

param
cause the exception which is the cause for this exception.
since
Android 1.0

        super(cause);
    
Methods Summary