java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.annotation.AnnotationFormatError
- 所有已实现的接口:
-
Serializable
当注解解析器尝试从类文件中读取注解并确定注解格式不正确时抛出。此错误可以由用于反射性地读取注解的API抛出。
- 自 JDK 版本:
- 1.5
- 参见:
-
Constructor Summary
ConstructorDescriptionAnnotationFormatError
(String message) 使用指定的详细消息构造一个新的AnnotationFormatError
。AnnotationFormatError
(String message, Throwable cause) 使用指定的详细消息和原因构造一个新的AnnotationFormatError
。AnnotationFormatError
(Throwable cause) 使用指定的原因和(cause == null ? null : cause.toString())
(通常包含cause
的类和详细消息)构造一个新的AnnotationFormatError
。 -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AnnotationFormatError
使用指定的详细消息构造一个新的AnnotationFormatError
。- 参数:
-
message
- 详细消息。
-
AnnotationFormatError
使用指定的详细消息和原因构造一个新的AnnotationFormatError
。请注意,与cause
关联的详细消息不会自动并入此错误的详细消息中。- 参数:
-
message
- 详细消息。 -
cause
- 原因(允许null
值,表示原因不存在或未知)。
-
AnnotationFormatError
使用指定的原因和(cause == null ? null : cause.toString())
(通常包含cause
的类和详细消息)构造一个新的AnnotationFormatError
。- 参数:
-
cause
- 原因(允许null
值,表示原因不存在或未知)。
-