public class JAXBException extends Exception
JAXBContext
, Marshaller
, Unmarshaller
, 直列化された形式コンストラクタと説明 |
---|
JAXBException(String message)
指定された詳細メッセージを持つ JAXBException を構築します。
|
JAXBException(String message, String errorCode)
指定された詳細メッセージとベンダー固有の errorCode を持つ JAXBException を構築します。
|
JAXBException(String message, String errorCode, Throwable exception)
指定された詳細メッセージ、ベンダー固有の errorCode、linkedException を持つ JAXBException を構築します。
|
JAXBException(String message, Throwable exception)
指定された詳細メッセージと linkedException を持つ JAXBException を構築します。
|
JAXBException(Throwable exception)
linkedException を持つ JAXBException を構築します。
|
修飾子と型 | メソッドと説明 |
---|---|
Throwable |
getCause()
このスロー可能オブジェクトの原因を返しますが、原因が存在しないか不明な場合は
null を返します。 |
String |
getErrorCode()
ベンダー固有のエラーコードを取得します。
|
Throwable |
getLinkedException()
リンクされた例外を取得します。
|
void |
printStackTrace()
この JAXBException とそのスタックトレース (linkedException が null 以外の場合、linkedException のスタックトレースを含む) を System.err に出力します。
|
void |
printStackTrace(PrintStream s)
この JAXBException とそのスタックトレース (linkedException が null 以外の場合、そのスタックトレースを含む) を PrintStream に出力します。
|
void |
printStackTrace(PrintWriter s)
この JAXBException とそのスタックトレース (linkedException が null 以外の場合、そのスタックトレースを含む) を PrintWriter に出力します。
|
void |
setLinkedException(Throwable exception)
リンクされた例外を追加します。
|
String |
toString()
この JAXBException の短い説明を返します。
|
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace
public JAXBException(String message)
message
- 例外の説明public JAXBException(String message, String errorCode)
message
- 例外の説明errorCode
- ベンダー固有のエラーコードを指定する文字列public JAXBException(Throwable exception)
exception
- リンクされた例外public JAXBException(String message, Throwable exception)
message
- 例外の説明exception
- リンクされた例外public String getErrorCode()
public Throwable getLinkedException()
public void setLinkedException(Throwable exception)
exception
- リンクされた例外 (null 値が許可されており、リンクされた例外が存在しないか不明なことを示す)。public String toString()
public void printStackTrace(PrintStream s)
printStackTrace
、クラス: Throwable
s
- 出力に使用する PrintStreampublic void printStackTrace()
printStackTrace
、クラス: Throwable
public void printStackTrace(PrintWriter s)
printStackTrace
、クラス: Throwable
s
- 出力に使用する PrintWriterpublic Throwable getCause()
Throwable
null
を返します。(原因はこのスロー可能オブジェクトをスローさせたスロー可能オブジェクトです。)
この実装は、Throwable
を要求するいずれかのコンストラクタ経由で提供された原因、または Throwable.initCause(Throwable)
メソッドを使用して作成後に設定された原因を返します。通常、このメソッドをオーバーライドする必要はありませんが、サブクラスはこのメソッドをオーバーライドして、ほかの何らかの方法で設定された原因を返すことができます。これは、チェーンされた例外の Throwable
への追加前に実行される「レガシー連鎖スロー可能オブジェクト」の場合に適切な動作です。PrintStackTrace
メソッドのいずれかをオーバーライドする必要はありません。これらのメソッドはすべて getCause
メソッドを呼び出して、スロー可能オブジェクトの原因を判別します。
バグまたは機能を送信
詳細な API リファレンスおよび開発者ドキュメントについては、Java SE のドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.