Exceptionpublic class Exception extends Throwable The class Exception and its subclasses are a form of
Throwable that indicates conditions that a reasonable
application might want to catch. |
Constructors Summary |
---|
public Exception()Constructs an Exception with no specified detail message.
super();
| public Exception(String s)Constructs an Exception with the specified detail message.
super(s);
|
|