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

KeyException

public class KeyException extends GeneralSecurityException
This is the basic key exception.
see
Key
see
InvalidKeyException
version
1.14 00/02/02

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

	super();
    
public KeyException(String msg)
Constructs a KeyException 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