1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | package Torello.Java.JSON;
/** <EMBED CLASS='external-html' DATA-FILE-ID=WRONG_MODE_EX> */
public class WrongModeException extends RuntimeException
{
/** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */
public static final long serialVersionUID = 1;
/**
* Constructs a new WrongModeException with the specified message.
* @param message the detail message
*/
public WrongModeException(String message)
{ super(message); }
/** Constructs a new WrongModeException with no detail message. */
public WrongModeException()
{ super(); }
}
|