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

InvalidKeySpecException

public class InvalidKeySpecException extends GeneralSecurityException
This is the exception for invalid key specifications.
version
1.13, 01/23/03
see
KeySpec
since
1.2

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

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