- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.xml.bind.JAXBException
-
- javax.xml.bind.MarshalException
-
- All Implemented Interfaces:
-
Serializable
public class MarshalException extends JAXBException
此异常表示在执行提供程序无法恢复的组织操作时发生错误。ValidationEventHandler
可能会导致在元帅操作期间抛出此异常。 见ValidationEventHandler.handleEvent(ValidationEvent)
。- 从以下版本开始:
- 1.6,JAXB 1.0
- 另请参见:
-
JAXBException
,Marshaller
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 MarshalException(String message)
使用指定的详细消息构造MarshalException。MarshalException(String message, String errorCode)
构造具有指定的详细消息和供应商特定的错误代码的MarshalException。MarshalException(String message, String errorCode, Throwable exception)
构造具有指定的详细消息,供应商特定的错误代码和linkedException的MarshalException。MarshalException(String message, Throwable exception)
使用指定的详细消息和linkedException构造MarshalException。MarshalException(Throwable exception)
使用linkedException构造MarshalException。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
MarshalException
public MarshalException(String message)
使用指定的详细消息构造MarshalException。 errorCode和linkedException将默认为null。- 参数
-
message
- 异常的描述
-
MarshalException
public MarshalException(String message, String errorCode)
构造具有指定的详细消息和供应商特定的错误代码的MarshalException。 linkedException将默认为null。- 参数
-
message
- 异常的描述 -
errorCode
- 指定供应商特定错误代码的字符串
-
MarshalException
public MarshalException(Throwable exception)
使用linkedException构造MarshalException。 详细消息和供应商特定的错误代码将默认为null。- 参数
-
exception
- 链接异常
-
MarshalException
public MarshalException(String message, Throwable exception)
使用指定的详细消息和linkedException构造MarshalException。 errorCode将默认为null。- 参数
-
message
- 异常的描述 -
exception
- 链接异常
-
-