- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- java.lang.annotation.AnnotationFormatError
-
- All Implemented Interfaces:
-
Serializable
public class AnnotationFormatError extends Error
当注释解析器尝试从类文件读取注释并确定注释格式错误时抛出。 这个错误可以抛出API used to read annotations reflectively 。- 从以下版本开始:
- 1.5
- 另请参见:
-
AnnotatedElement
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 AnnotationFormatError(String message)
构造一个新的AnnotationFormatError
与指定的详细信息。AnnotationFormatError(String message, Throwable cause)
构造一个新的AnnotationFormatError
与指定的详细信息和原因。AnnotationFormatError(Throwable cause)
构造一个新的AnnotationFormatError
与指定的原因和详细消息(cause == null ? null : cause.toString())
(它通常包含的类和详细消息cause
)。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
AnnotationFormatError
public AnnotationFormatError(String message)
构造一个新的AnnotationFormatError
与指定的详细信息。- 参数
-
message
- 详细信息。
-
AnnotationFormatError
public AnnotationFormatError(String message, Throwable cause)
构造一个新的AnnotationFormatError
与指定的详细信息和原因。 请注意,与cause
相关联的详细信息不会自动并入此错误的详细消息。- 参数
-
message
- 详细信息 -
cause
- 原因(允许Anull
值,表示原因不存在或未知)。
-
AnnotationFormatError
public AnnotationFormatError(Throwable cause)
构造一个新的AnnotationFormatError
与指定的原因和详细消息(cause == null ? null : cause.toString())
(它通常包含的类和详细消息cause
)。- 参数
-
cause
- 原因(允许为Anull
,表示原因不存在或未知)。
-
-