| java.lang.Object | ||
| ↳ | java.lang.Throwable | |
| ↳ | java.lang.Exception | |
Known Direct Subclasses
|
The class Exception and its subclasses are a form of
Throwable that indicates conditions that a reasonable
application might want to catch.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
Exception()
Constructs an
Exception with no specified detail message. | |||||||||||
|
Exception(String s)
Constructs an
Exception with the specified detail message. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Throwable
| |||||||||||
From class
java.lang.Object
| |||||||||||
Constructs an Exception with no specified detail message.
Constructs an Exception with the specified detail message.
| s | the detail message. |
|---|