1 *java.lang.annotation.AnnotationFormatError* *AnnotationFormatError* Thrown when
3 public class AnnotationFormatError
4 extends |java.lang.Error|
6 |java.lang.annotation.AnnotationFormatError_Description|
7 |java.lang.annotation.AnnotationFormatError_Fields|
8 |java.lang.annotation.AnnotationFormatError_Constructors|
9 |java.lang.annotation.AnnotationFormatError_Methods|
11 ================================================================================
13 *java.lang.annotation.AnnotationFormatError_Constructors*
14 |java.lang.annotation.AnnotationFormatError(String)|Constructs a new Annotation
15 |java.lang.annotation.AnnotationFormatError(String,Throwable)|Constructs a new
16 |java.lang.annotation.AnnotationFormatError(Throwable)|Constructs a new Annotat
18 *java.lang.annotation.AnnotationFormatError_Description*
20 Thrown when the annotation parser attempts to read an annotation from a class
21 file and determines that the annotation is malformed.
25 *java.lang.annotation.AnnotationFormatError(String)*
27 public AnnotationFormatError(java.lang.String message)
29 Constructs a new AnnotationFormatError with the specified detail message.
31 message - the detail message.
33 *java.lang.annotation.AnnotationFormatError(String,Throwable)*
35 public AnnotationFormatError(
36 java.lang.String message,
37 java.lang.Throwable cause)
39 Constructs a new AnnotationFormatError with the specified detail message and
40 cause. Note that the detail message associated with cause is not automatically
41 incorporated in this error's detail message.
43 message - the detail message
44 cause - the cause (A null value is permitted, and indicates that the cause is
45 nonexistent or unknown.)
47 *java.lang.annotation.AnnotationFormatError(Throwable)*
49 public AnnotationFormatError(java.lang.Throwable cause)
51 Constructs a new AnnotationFormatError with the specified cause and a detail
52 message of (cause == null ? null : cause.toString()) (which typically contains
53 the class and detail message of cause).
55 cause - the cause (A null value is permitted, and indicates that the cause is
56 nonexistent or unknown.)