| java.lang.Object | |||
| ↳ | java.lang.Throwable | ||
| ↳ | java.lang.Error | ||
| ↳ | java.lang.AssertionError | ||
Indicates that an assertion has failed.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs an instance without a message. | |||||||||||
Constructs an instance with a message that is the valueOf(Object) of the object passed. | |||||||||||
Constructs an instance with a message that is the valueOf(boolean) of the boolean passed. | |||||||||||
Constructs an instance with a message that is the valueOf(char) of the char passed. | |||||||||||
Constructs an instance with a message that is the valueOf(int) of the int passed. | |||||||||||
Constructs an instance with a message that is the valueOf(long) of the long passed. | |||||||||||
Constructs an instance with a message that is the valueOf(float) of the float passed. | |||||||||||
Constructs an instance with a message that is the valueOf(double) of the double passed. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class java.lang.Throwable
| |||||||||||
From class java.lang.Object
| |||||||||||
Constructs an instance without a message.
Constructs an instance with a message that is the valueOf(Object) of the object passed. If the object passed is an instanceof Throwable, then it also becomes the cause of this error.
| detailMessage | The value to be converted into the message and optionally the cause. |
|---|
Constructs an instance with a message that is the valueOf(boolean) of the boolean passed.
| detailMessage | The value to be converted into the message. |
|---|
Constructs an instance with a message that is the valueOf(char) of the char passed.
| detailMessage | The value to be converted into the message. |
|---|
Constructs an instance with a message that is the valueOf(int) of the int passed.
| detailMessage | The value to be converted into the message. |
|---|
Constructs an instance with a message that is the valueOf(long) of the long passed.
| detailMessage | The value to be converted into the message. |
|---|
Constructs an instance with a message that is the valueOf(float) of the float passed.
| detailMessage | The value to be converted into the message. |
|---|
Constructs an instance with a message that is the valueOf(double) of the double passed.
| detailMessage | The value to be converted into the message. |
|---|