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

ServiceException

public class ServiceException extends CardRuntimeException
ServiceException represents a service framework related exception.
version
1.0

Fields Summary
public static final short
ILLEGAL_PARAM
This reason code is used to indicate that an input parameter is not allowed.
public static final short
DISPATCH_TABLE_FULL
This reason code is used to indicate that a dispatch table is full.
public static final short
COMMAND_DATA_TOO_LONG
This reason code is used to indicate that the incoming data for a command in the APDU object does not fit in the APDU buffer.
public static final short
CANNOT_ACCESS_IN_COMMAND
This reason code is used to indicate that the command in the APDU object cannot be accessed for input processing.
public static final short
CANNOT_ACCESS_OUT_COMMAND
This reason code is used to indicate that the command in the APDU object cannot be accessed for output processing.
public static final short
COMMAND_IS_FINISHED
This reason code is used to indicate that the command in the APDU object has been completely processed.
public static final short
REMOTE_OBJECT_NOT_EXPORTED
This reason code is used by RMIService to indicate that the remote method returned an remote object which has not been exported.
Constructors Summary
public ServiceException(short reason)
Constructs a ServiceException.

param
reason the reason for the exception

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

param
reason the reason for the exception
exception
ServiceException always

    
	throw new ServiceException(reason);