public class

UmbrellaException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ com.google.gwt.event.shared.UmbrellaException
Known Direct Subclasses

Class Overview

A RuntimeException that collects a Set of child Throwables together. Typically thrown after loop, with all of the exceptions thrown during that loop, but delayed so that the loop finishes executing.

Summary

Public Constructors
UmbrellaException(Set<Throwable> causes)
Public Methods
Set<Throwable> getCauses()
Get the set of exceptions that caused the failure.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public UmbrellaException (Set<Throwable> causes)

Public Methods

public Set<Throwable> getCauses ()

Get the set of exceptions that caused the failure.

Returns
  • the set of causes