public class

SerializableException

extends Exception
implements IsSerializable
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ com.google.gwt.user.client.rpc.SerializableException

This class is deprecated.
As of GWT 1.5, Exception implements java.io.Serializable Serializable and can be used in place of this class

Class Overview

Superclass for exceptions thrown from RPC methods (those appearing in interfaces derived from RemoteService).

Summary

Public Constructors
SerializableException()
The default constructor.
SerializableException(String msg)
Constructs a serializable exception with the specified message.
Public Methods
Throwable getCause()
Exception chaining is not currently supported for serialized exceptions.
Throwable initCause(Throwable cause)
No effect; exception chaining is not currently supported for serialized exceptions.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public SerializableException ()

The default constructor. This constructor is used implicitly during serialization or when constructing subclasses.

public SerializableException (String msg)

Constructs a serializable exception with the specified message. This constructor is most often called by subclass constructors.

Public Methods

public Throwable getCause ()

Exception chaining is not currently supported for serialized exceptions.

Returns
  • always null

public Throwable initCause (Throwable cause)

No effect; exception chaining is not currently supported for serialized exceptions.