FileDocCategorySizeDatePackage
PINException.javaAPI DocphoneME MR2 API (J2ME)2034Wed May 02 18:00:40 BST 2007javacard.framework

PINException

public class PINException extends CardRuntimeException
PINException represents a OwnerPIN class access-related exception.

Fields Summary
public static final short
ILLEGAL_VALUE
This reason code is used to indicate that one or more input parameters is out of allowed bounds.
Constructors Summary
public PINException(short reason)
Constructs a PINException. To conserve on resources use throwIt() to use the JCRE owned instance of this class.

param
reason the reason for the exception

    
                                  
       
	super(reason);
    
Methods Summary
public static voidthrowIt(short reason)
Throws an instance of PINException with the specified reason.

param
reason the reason for the exception.
exception
PINException always

    
	throw new PINException(reason);