类 SerializationException

所有已实现的接口:
Serializable

public class SerializationException extends RuntimeException
copy from org.apache.commons.lang.SerializationException (commons-lang:commons-lang.2.4)

Exception thrown when the Serialization process fails.

The original error is wrapped within this one.

从以下版本开始:
3.24.0
作者:
Stephen Colebourne
另请参阅:
  • 构造器详细资料

    • SerializationException

      public SerializationException()

      Constructs a new SerializationException without specified detail message.

    • SerializationException

      public SerializationException(String msg)

      Constructs a new SerializationException with specified detail message.

      参数:
      msg - The error message.
    • SerializationException

      public SerializationException(Throwable cause)

      Constructs a new SerializationException with specified nested Throwable.

      参数:
      cause - The Exception or Error that caused this exception to be thrown.
    • SerializationException

      public SerializationException(String msg, Throwable cause)

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

      参数:
      msg - The error message.
      cause - The Exception or Error that caused this exception to be thrown.