Class SerializableException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.google.gwt.user.client.rpc.SerializableException
All Implemented Interfaces:
IsSerializable, Serializable

@Deprecated public class SerializableException extends Exception implements IsSerializable
Deprecated.
As of GWT 1.5, Exception implements Serializable and can be used in place of this class
Superclass for exceptions thrown from RPC methods (those appearing in interfaces derived from RemoteService).
See Also:
  • Constructor Details

    • SerializableException

      public SerializableException()
      Deprecated.
      The default constructor. This constructor is used implicitly during serialization or when constructing subclasses.
    • SerializableException

      public SerializableException(String msg)
      Deprecated.
      Constructs a serializable exception with the specified message. This constructor is most often called by subclass constructors.
  • Method Details

    • getCause

      public Throwable getCause()
      Deprecated.
      Exception chaining is not currently supported for serialized exceptions.
      Overrides:
      getCause in class Throwable
      Returns:
      always null
    • initCause

      public Throwable initCause(Throwable cause)
      Deprecated.
      No effect; exception chaining is not currently supported for serialized exceptions.
      Overrides:
      initCause in class Throwable