001package Torello.Java.JSON;
002
003/** <EMBED CLASS='external-html' DATA-FILE-ID=WRONG_MODE_EX> */
004public class WrongModeException extends RuntimeException
005{
006    /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX>  */
007    public static final long serialVersionUID = 1;
008
009    /**
010     * Constructs a new WrongModeException with the specified message.
011     * @param message the detail message
012     */
013    public WrongModeException(String message)
014    { super(message); }
015
016    /** Constructs a new WrongModeException with no detail message. */
017    public WrongModeException()
018    { super(); }
019}