FileDocCategorySizeDatePackage
InvalidKeySpecException.javaAPI DocAndroid 1.5 API2355Wed May 06 22:41:06 BST 2009java.security.spec

InvalidKeySpecException

public class InvalidKeySpecException extends GeneralSecurityException
The exception that is thrown when an invalid key specification is encountered.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
The serial version identifier.
Constructors Summary
public InvalidKeySpecException(String msg)
Creates a new {@code InvalidKeySpecException} with the specified message.

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


                                         
       
        super(msg);
    
public InvalidKeySpecException()
Creates a new {@code InvalidKeySpecException}.

since
Android 1.0

    
public InvalidKeySpecException(String message, Throwable cause)
Creates a new {@code InvalidKeySpecException} with the specified message and cause.

param
message the detail message of this exception.
param
cause the cause of this exception.
since
Android 1.0

        super(message, cause);
    
public InvalidKeySpecException(Throwable cause)
Creates a new {@code InvalidKeySpecException} with the specified cause.

param
cause the cause of this exception.
since
Android 1.0

        super(cause);
    
Methods Summary