com.google.web.bindery.event.shared
Class UmbrellaException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.google.web.bindery.event.shared.UmbrellaException
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- UmbrellaException
public class UmbrellaException
- extends java.lang.RuntimeException
A RuntimeException
that collects a Set
of child
Throwable
s together. Typically thrown after a loop, with all of the
exceptions thrown during that loop, but delayed so that the loop finishes
executing.
- See Also:
- Serialized Form
Method Summary |
java.util.Set<java.lang.Throwable> |
getCauses()
Get the set of exceptions that caused the failure. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
UmbrellaException
public UmbrellaException(java.util.Set<java.lang.Throwable> causes)
UmbrellaException
protected UmbrellaException()
- Required for GWT RPC serialization.
getCauses
public java.util.Set<java.lang.Throwable> getCauses()
- Get the set of exceptions that caused the failure.
- Returns:
- the set of causes