Class Overview
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.
Summary
[Expand]
Inherited Methods |
From class
java.lang.Throwable
|
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
|
final
Class<?>
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
|
Public Constructors
public
AnnotationFormatError
(String message)
Constructs an instance with the message provided.
Parameters
message
| the details of the error.
|
public
AnnotationFormatError
(String message, Throwable cause)
Constructs an instance with a message and a cause.
Parameters
message
| the details of the error. |
cause
| the cause of the error or null if none.
|
public
AnnotationFormatError
(Throwable cause)
Constructs an instance with a cause. If the cause is not
null
, then cause.toString()
is used as the
error's message.
Parameters
cause
| the cause of the error or null if none.
|