public class

UnexpectedException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ com.google.gwt.user.server.rpc.UnexpectedException

Class Overview

The GWT RPC class throws UnexpectedException when a service method, being invoked by GWT RPC, throws a checked exception that is not in the service method's signature. Such exceptions are "unexpected" and the specific exception will be the cause of the UnexpectedException.

Summary

Public Constructors
UnexpectedException(String message, Throwable cause)
Construct an UnexpectedException.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public UnexpectedException (String message, Throwable cause)

Construct an UnexpectedException.

Parameters
message the detail message
cause the cause of this UnexpectedException