FileDocCategorySizeDatePackage
EmulationException.javaAPI DocphoneME MR2 API (J2ME)1594Wed May 02 18:00:30 BST 2007com.sun.midp.jsr82emul

EmulationException

public class EmulationException extends RuntimeException
This class represents an exception to be thrown if JSR 82 emulation environment works incorrectly due to unknown reasons.

Fields Summary
Constructors Summary
public EmulationException()
Constructs an instance without message.

        super();
    
public EmulationException(String message)
Constructs an instance with the message given.

param
message the exception details

        super(message);
    
Methods Summary