FileDocCategorySizeDatePackage
KeyException.javaAPI DocphoneME MR2 API (J2ME)1646Wed May 02 18:00:24 BST 2007com.sun.midp.crypto

KeyException

public class KeyException extends CryptoException
This is the basic key exception.

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