FileDocCategorySizeDatePackage
InvalidKeyException.javaAPI DocAndroid 1.5 API2338Wed May 06 22:41:06 BST 2009java.security

InvalidKeyException

public class InvalidKeyException extends KeyException
{@code InvalidKeyException} indicates exceptional conditions, caused by an invalid key.
since
Android 1.0

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

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


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

since
Android 1.0

    
public InvalidKeyException(String message, Throwable cause)
Constructs a new instance of {@code InvalidKeyException} 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 InvalidKeyException(Throwable cause)
Constructs a new instance of {@code InvalidKeyException} with the cause.

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

        super(cause);
    
Methods Summary