/*********************************************************************
* ____ _____ _ *
* / ___| ___ _ __ _ _ | ____|_ __(_) ___ ___ ___ ___ _ __ *
* \___ \ / _ \| '_ \| | | | | _| | '__| |/ __/ __/ __|/ _ \| '_ \ *
* ___) | (_) | | | | |_| | | |___| | | | (__\__ \__ \ (_) | | | | *
* |____/ \___/|_| |_|\__, | |_____|_| |_|\___|___/___/\___/|_| |_| *
* |___/ *
* *
*********************************************************************
* Sony Ericsson Mobile Communications AB, Lund Sweden *
* Copyright 2007 Sony Ericsson Mobile Communications AB. *
* All rights, including trade secret rights, reserved. *
*********************************************************************
*
* @file
* @ingroup JAVA
*
* @copyright_semc
* @author MIDP
*/
package javax.microedition.midlet;
/**
* Signals that a requested <code>MIDlet</code> state change failed. This
* exception is thrown by the <code>MIDlet</code> in response to state change
* calls into the application via the <code>MIDlet</code> interface
*
* @see MIDlet
* @since MIDP 1.0
* #deprecated MIDletStateChangeException is no longer used.
* MIDlets that throw MIDletStateChangeException will be destroyed.
*/
public class MIDletStateChangeException extends Exception {
/**
* Constructs an exception with no specified detail message.
*/
public MIDletStateChangeException() {
}
/**
* Constructs an exception with the specified detail message.
*
* @param s
* the detail message
*/
public MIDletStateChangeException(String s) {
super(s);
}
}
|