java.lang.Object | |||
↳ | java.lang.Throwable | ||
↳ | java.lang.Error | ||
↳ | java.lang.annotation.AnnotationFormatError |
Indicates that an annotation in the binary representation of a class is syntactically incorrect and the annotation parser is unable to process it. This exception is unlikely to ever occur, given that the code has been compiled by an ordinary Java compiler.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs an instance with the message provided.
| |||||||||||
Constructs an instance with a message and a cause.
| |||||||||||
Constructs an instance with a cause.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Throwable
| |||||||||||
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.
|
---|