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

SignatureException

public class SignatureException extends GeneralSecurityException
This is the generic Signature exception.
version
1.13 01/23/03

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

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