| java.lang.Object | ||||
| java.lang.Throwable | Serializable | |||
| java.lang.Error | ||||
| java.lang.annotation.AnnotationFormatError | ||||
Indicates that an annotation in a class file is incorrectly formatted.
| AnnotationFormatError(String message) | |||||
Constructs an instance with the message provided. |
|||||
| AnnotationFormatError(String message, Throwable cause) | |||||
Constructs an instance with a message and a cause. |
|||||
| AnnotationFormatError(Throwable cause) | |||||
Constructs an instance with a cause. |
|||||
Methods inherited
from class
java.lang.Throwable
Methods inherited
from class
java.lang.Object
Constructs an instance with the message provided.
| message | The details of the error. |
|---|
Constructs an instance with a message and a cause.
| message | The details of the error. |
|---|---|
| cause | The cause of the error or null if none.
|
Constructs an instance with a cause. If the cause is NOT
null, then cause.toString() is used as the
error's message.
| cause | The cause of the error or null if none.
|
|---|