com.stumbleupon.async
Class DeferredGroupException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.stumbleupon.async.DeferredGroupException
All Implemented Interfaces:
Serializable

public final class DeferredGroupException
extends RuntimeException

Exception used when one the Deferreds in a group failed.

You can create a group of Deferreds using Deferred.group(java.util.Collection>).

See Also:
Serialized Form

Method Summary
 ArrayList<Object> results()
          Returns all the results of the group of Deferreds.
 
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
 

Method Detail

results

public ArrayList<Object> results()
Returns all the results of the group of Deferreds.