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

ISOException

public class ISOException extends CardRuntimeException
ISOException class encapsulates an ISO 7816-4 response status word as its reason code.

Fields Summary
Constructors Summary
public ISOException(short sw)
Constructs an ISOException instance with the specified status word.

param
sw the ISO 7816-4 defined status word

	super(sw);
    
Methods Summary
public static voidthrowIt(short sw)
Throws an instance of the ISOException class with the specified status word.

param
sw ISO 7816-4 defined status word
exception
ISOException always

	throw new ISOException(sw);