Module  java.base
软件包  java.lang.annotation

Class AnnotationFormatError

    • 构造方法详细信息

      • AnnotationFormatError

        public AnnotationFormatError​(String message)
        构造一个新的 AnnotationFormatError与指定的详细信息。
        参数
        message - 详细信息。
      • AnnotationFormatError

        public AnnotationFormatError​(String message,
                                     Throwable cause)
        构造一个新的AnnotationFormatError与指定的详细信息和原因。 请注意,与cause相关联的详细信息不会自动并入此错误的详细消息。
        参数
        message - 详细信息
        cause - 原因(允许A null值,表示原因不存在或未知)。
      • AnnotationFormatError

        public AnnotationFormatError​(Throwable cause)
        构造一个新的 AnnotationFormatError与指定的原因和详细消息 (cause == null ? null : cause.toString()) (它通常包含的类和详细消息 cause )。
        参数
        cause - 原因(允许为A null ,表示原因不存在或未知)。