- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- javax.xml.bind.JAXBException
- 
- javax.xml.bind.UnmarshalException
 
 
 
 
- 
- すべての実装されたインタフェース:
- Serializable
 
 
 public class UnmarshalException extends JAXBException この例外は、非整列化操作の実行中にエラーが発生し、JAXBプロバイダが操作を完了できなかったことを示します。ValidationEventHandlerは、非整列化操作中にこの例外をスローする可能性があります。ValidationEventHandler.handleEvent(ValidationEvent)を参照してください。- 導入されたバージョン:
- 1.6, JAXB 1.0
- 関連項目:
- JAXBException,- Unmarshaller,- ValidationEventHandler, 直列化された形式
 
- 
- 
コンストラクタのサマリーコンストラクタ コンストラクタ 説明 UnmarshalException(String message)指定された詳細メッセージを持つUnmarshalExceptionを構築します。UnmarshalException(String message, String errorCode)指定された詳細メッセージとベンダー固有のerrorCodeを持つUnmarshalExceptionを構築します。UnmarshalException(String message, String errorCode, Throwable exception)指定された詳細メッセージ、ベンダー固有のerrorCode、linkedExceptionを持つUnmarshalExceptionを構築します。UnmarshalException(String message, Throwable exception)指定された詳細メッセージとlinkedExceptionを持つUnmarshalExceptionを構築します。UnmarshalException(Throwable exception)linkedExceptionを持つUnmarshalExceptionを構築します。
 - 
メソッドのサマリー- 
クラス javax.xml.bind.JAXBExceptionから継承されるメソッドgetCause, getErrorCode, getLinkedException, printStackTrace, printStackTrace, printStackTrace, setLinkedException, toString
 - 
クラス java.lang.Objectから継承されたメソッドclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
クラス java.lang.Throwableから継承されたメソッドaddSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace
 
- 
 
- 
- 
- 
コンストラクタの詳細- 
UnmarshalExceptionpublic UnmarshalException(String message) 指定された詳細メッセージを持つUnmarshalExceptionを構築します。 errorCodeとlinkedExceptionは、デフォルトでnullになります。- パラメータ:
- message- 例外の説明
 
 - 
UnmarshalExceptionpublic UnmarshalException(String message, String errorCode) 指定された詳細メッセージとベンダー固有のerrorCodeを持つUnmarshalExceptionを構築します。 linkedExceptionは、デフォルトでnullになります。- パラメータ:
- message- 例外の説明
- errorCode- ベンダー固有のエラー・コードを指定する文字列
 
 - 
UnmarshalExceptionpublic UnmarshalException(Throwable exception) linkedExceptionを持つUnmarshalExceptionを構築します。 詳細メッセージとベンダー固有のerrorCodeはデフォルトでnullになります。- パラメータ:
- exception- リンクされた例外
 
 - 
UnmarshalExceptionpublic UnmarshalException(String message, Throwable exception) 指定された詳細メッセージとlinkedExceptionを持つUnmarshalExceptionを構築します。 errorCodeはデフォルトでnullになります。- パラメータ:
- message- 例外の説明
- exception- リンクされた例外
 
 
- 
 
-