- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.xml.bind.JAXBException
-
- javax.xml.bind.PropertyException
-
- All Implemented Interfaces:
-
Serializable
public class PropertyException extends JAXBException
此异常表示获取或设置属性时遇到错误。- 从以下版本开始:
- 1.6,JAXB 1.0
- 另请参见:
-
JAXBContext
,Validator
,Unmarshaller
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 PropertyException(String message)
使用指定的详细消息构造PropertyException。PropertyException(String name, Object value)
构造一个PropertyException,其消息字段是基于属性的名称和value.toString()来设置的。PropertyException(String message, String errorCode)
构造具有指定的详细消息和供应商特定的错误代码的PropertyException。PropertyException(String message, String errorCode, Throwable exception)
使用指定的详细消息,供应商特定的错误代码和linkedException构造PropertyException。PropertyException(String message, Throwable exception)
使用指定的详细消息和linkedException构造PropertyException。PropertyException(Throwable exception)
使用linkedException构造PropertyException。
-
方法摘要
-
Methods inherited from class javax.xml.bind.JAXBException
getCause, getErrorCode, getLinkedException, printStackTrace, printStackTrace, printStackTrace, setLinkedException, toString
-
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, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace
-
-
-
-
构造方法详细信息
-
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
- 链接异常
-
-