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

SignatureException

public class SignatureException extends GeneralSecurityException
This is the generic Signature exception.

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