javaruntimes/midp/runtime/javasrc/javax/microedition/midlet/MIDletStateChangeException.java
branchRCL_3
changeset 19 04becd199f91
child 23 98ccebc37403
equal deleted inserted replaced
16:f5050f1da672 19:04becd199f91
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 package javax.microedition.midlet;
       
    20 
       
    21 /**
       
    22  * An exception for the MIDlet to inform that it doesn't want to do the state
       
    23  * change requested by the life cycle.
       
    24  * @see MIDP spec for further details.
       
    25  *
       
    26  * @author Nokia Corporation
       
    27  * @version $Rev$
       
    28  */
       
    29 public class MIDletStateChangeException extends Exception
       
    30 {
       
    31 
       
    32     /*** ----------------------------- PUBLIC ------------------------------ */
       
    33 
       
    34     /**
       
    35     * The default constructor of the MIDletStateChangeException without any
       
    36     * message.
       
    37     */
       
    38     public MIDletStateChangeException()
       
    39     {
       
    40     }
       
    41 
       
    42     /**
       
    43     * The constructor of the MIDletStateChangeException with a detailed
       
    44     * message.
       
    45     * @param message The detailed message.
       
    46     */
       
    47     public MIDletStateChangeException(String message)
       
    48     {
       
    49         super(message);
       
    50     }
       
    51 }