Groovy Documentation

gpars
[Java] Class AsyncException

java.lang.Object
  java.lang.Throwable
      java.lang.Exception
          java.lang.RuntimeException
              gpars.AsyncException

public final class AsyncException
extends RuntimeException

This class wraps multiple exception, which occurred in concurrently run code inside one of the GParsExecutorsPoolUtil methods.

Authors:
Vaclav Pech Date: Nov 17, 2008
See Also:
GParsExecutorsPoolUtil


Constructor Summary
AsyncException(String message, List concurrentExceptions)

 
Method Summary
List getConcurrentExceptions()

String getMessage()

String toString()

 
Methods inherited from class RuntimeException
printStackTrace, printStackTrace, printStackTrace, fillInStackTrace, getCause, initCause, toString, getMessage, getLocalizedMessage, getStackTrace, setStackTrace, wait, wait, wait, equals, hashCode, getClass, notify, notifyAll
 
Methods inherited from class Exception
printStackTrace, printStackTrace, printStackTrace, fillInStackTrace, getCause, initCause, toString, getMessage, getLocalizedMessage, getStackTrace, setStackTrace, wait, wait, wait, equals, hashCode, getClass, notify, notifyAll
 

Constructor Detail

AsyncException

@SuppressWarnings({"AssignmentToCollectionOrArrayFieldFromParameter"})
public AsyncException(String message, List concurrentExceptions)


 
Method Detail

getConcurrentExceptions

public List getConcurrentExceptions()


getMessage

@Override
public String getMessage()


toString

@Override
public String toString()


 

Groovy Documentation