AnnotationFormatErrorpublic class AnnotationFormatError extends Error 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. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public AnnotationFormatError(String message)Constructs an instance with the message provided.
super(message);
| public AnnotationFormatError(String message, Throwable cause)Constructs an instance with a message and a cause.
super(message, cause);
| public AnnotationFormatError(Throwable cause)Constructs an instance with a cause. If the cause is not
{@code null}, then {@code cause.toString()} is used as the
error's message.
super(cause == null ? null : cause.toString(), cause);
|
|