Class SerializationException

  • All Implemented Interfaces:
    java.io.Serializable

    public class SerializationException
    extends java.lang.RuntimeException

    Exception thrown when the Serialization process fails.

    The original error is wrapped within this one.

    #NotThreadSafe# because Throwable is not thread-safe

    Since:
    1.0
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SerializationException()
      Constructs a new SerializationException without specified detail message.
      SerializationException​(java.lang.String msg)
      Constructs a new SerializationException with specified detail message.
      SerializationException​(java.lang.String msg, java.lang.Throwable cause)
      Constructs a new SerializationException with specified detail message and nested Throwable.
      SerializationException​(java.lang.Throwable cause)
      Constructs a new SerializationException with specified nested Throwable.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • SerializationException

        public SerializationException()

        Constructs a new SerializationException without specified detail message.

      • SerializationException

        public SerializationException​(java.lang.String msg)

        Constructs a new SerializationException with specified detail message.

        Parameters:
        msg - The error message.
      • SerializationException

        public SerializationException​(java.lang.Throwable cause)

        Constructs a new SerializationException with specified nested Throwable.

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

        public SerializationException​(java.lang.String msg,
                                      java.lang.Throwable cause)

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

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