Module  java.xml.bind
软件包  javax.xml.bind

Class PropertyException

    • 构造方法详细信息

      • PropertyException

        public PropertyException​(String message)
        使用指定的详细消息构造PropertyException。 errorCode和linkedException将默认为null。
        参数
        message - 异常的描述
      • PropertyException

        public PropertyException​(String message,
                                 String errorCode)
        构造具有指定的详细消息和供应商特定的错误代码的PropertyException。 linkedException将默认为null。
        参数
        message - 异常的描述
        errorCode - 指定供应商特定错误代码的字符串
      • PropertyException

        public PropertyException​(Throwable exception)
        使用linkedException构造PropertyException。 详细消息和供应商特定的错误代码将默认为null。
        参数
        exception - 链接异常
      • PropertyException

        public PropertyException​(String message,
                                 Throwable exception)
        使用指定的详细消息和linkedException构造PropertyException。 errorCode将默认为null。
        参数
        message - 异常的描述
        exception - 链接异常
      • PropertyException

        public PropertyException​(String message,
                                 String errorCode,
                                 Throwable exception)
        使用指定的详细消息,供应商特定的错误代码和linkedException构造PropertyException。
        参数
        message - 异常的描述
        errorCode - 指定供应商特定错误代码的字符串
        exception - 链接异常
      • PropertyException

        public PropertyException​(String name,
                                 Object value)
        构造一个PropertyException,其消息字段是基于属性的名称和value.toString()来设置的。
        参数
        name - 与此异常相关的属性的名称
        value - 与此异常相关的属性的值