org.apache.commons.lang
クラス SerializationException

java.lang.Object
  拡張java.lang.Throwable
      拡張java.lang.Exception
          拡張java.lang.RuntimeException
              拡張org.apache.commons.lang.exception.NestableRuntimeException
                  拡張org.apache.commons.lang.SerializationException
すべての実装インタフェース:
Nestable, Serializable

public class SerializationException
extends NestableRuntimeException

シリアライゼーションに失敗した場合に投げられる例外です。

Exception thrown when the Serialization process fails.

オリジナルの例外を内部にラップします。

The original error is wrapped within this one.

導入されたバージョン:
1.0
バージョン:
$Id: SerializationException.java,v 1.1.1.1 2004/02/13 10:02:05 hioki Exp $
作成者:
Stephen Colebourne
関連項目:
直列化された形式
翻訳者:
日置 聡
翻訳状況:
初稿(校正者募集中)
翻訳更新日:
2003/09/04

フィールドの概要
 
クラス org.apache.commons.lang.exception.NestableRuntimeException から継承したフィールド
delegate
 
コンストラクタの概要
SerializationException()
          詳細メッセージを指定せずに新規 SerializationException を生成します。
SerializationException(String msg)
          詳細メッセージを指定して新規 SerializationException を生成します。
SerializationException(String msg, Throwable cause)
          詳細メッセージとネストされる Throwable を指定して新規 SerializationException を生成します。
SerializationException(Throwable cause)
          ネストされる Throwable を指定して新規 SerializationException を生成します。
 
クラス org.apache.commons.lang.exception.NestableRuntimeException から継承したメソッド
getCause, getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace
 
クラス java.lang.Throwable から継承したメソッド
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

SerializationException

public SerializationException()

詳細メッセージを指定せずに新規 SerializationException を生成します。

Constructs a new SerializationException without specified detail message.


SerializationException

public SerializationException(String msg)

詳細メッセージを指定して新規 SerializationException を生成します。

Constructs a new SerializationException with specified detail message.

パラメータ:
msg - エラーメッセージ
The error message.

SerializationException

public SerializationException(Throwable cause)

ネストされる Throwable を指定して新規 SerializationException を生成します。

Constructs a new SerializationException with specified nested Throwable.

パラメータ:
cause - この例外が投げられる原因となった Exception または Error
The Exception or Error that caused this exception to be thrown.

SerializationException

public SerializationException(String msg,
                              Throwable cause)

詳細メッセージとネストされる Throwable を指定して新規 SerializationException を生成します。

Constructs a new SerializationException with specified detail message and nested Throwable.

パラメータ:
msg - エラーメッセージ
The error message.
cause - この例外が投げられる原因となった Exception または Error
The Exception or Error that caused this exception to be thrown.


このドキュメントは、Ja-Jakartaにより訳されました。 コメントがある場合は report@jajakarta.orgまでお願いします。
Translated into Japanese by jajakarta.org. The original page is here.
Copyright (c) 2002-2003 - Apache Software Foundation