AnnotationTypeMismatchExceptionpublic class AnnotationTypeMismatchException extends RuntimeException Thrown to indicate that a program has attempted to access an element of
an annotation whose type has changed after the annotation was compiled
(or serialized). |
Fields Summary |
---|
private final Method | elementThe Method object for the annotation element. | private final String | foundTypeThe (erroneous) type of data found in the annotation. This string
may, but is not required to, contain the value as well. The exact
format of the string is unspecified. |
Constructors Summary |
---|
public AnnotationTypeMismatchException(Method element, String foundType)Constructs an AnnotationTypeMismatchException for the specified
annotation type element and found data type.
super("Incorrectly typed data found for annotation element " + element
+ " (Found data of type " + foundType + ")");
this.element = element;
this.foundType = foundType;
|
Methods Summary |
---|
public java.lang.reflect.Method | element()Returns the Method object for the incorrectly typed element.
return this.element;
| public java.lang.String | foundType()Returns the type of data found in the incorrectly typed element.
The returned string may, but is not required to, contain the value
as well. The exact format of the string is unspecified.
return this.foundType;
|
|