FileDocCategorySizeDatePackage
InvalidKeyException.javaAPI DocphoneME MR2 API (J2ME)1776Wed May 02 18:00:38 BST 2007java.security

InvalidKeyException

public class InvalidKeyException extends KeyException
This is the exception for invalid Keys (invalid encoding, wrong length, uninitialized, etc).
version
1.13, 01/23/03

Fields Summary
Constructors Summary
public InvalidKeyException()
Constructs an InvalidKeyException with no detail message. A detail message is a String that describes this particular exception.

	super();
    
public InvalidKeyException(String msg)
Constructs an InvalidKeyException with the specified detail message. A detail message is a String that describes this particular exception.

param
msg the detail message.

	super(msg);
    
Methods Summary