Groovy Documentation

gpars.actor.impl
[Java] Class ActorReplyException

java.lang.Object
  java.lang.Throwable
      java.lang.Exception
          java.lang.RuntimeException
              gpars.actor.impl.ActorReplyException

public final class ActorReplyException
extends RuntimeException

Indicates problems sending replies to actors. Holds a list of exceptions that occurred during reply dispatch.

Authors:
Vaclav Pech Date: Jun 11, 2009


Constructor Summary
ActorReplyException(String message)

ActorReplyException(String message, List issues)

 
Method Summary
List getIssues()

void printStackTrace()

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

ActorReplyException

public ActorReplyException(String message)


ActorReplyException

public ActorReplyException(String message, List issues)


 
Method Detail

getIssues

@SuppressWarnings({"ReturnOfCollectionOrArrayField"})
public List getIssues()


printStackTrace

@SuppressWarnings({"CallToPrintStackTrace"})
@Override
public void printStackTrace()


toString

@Override
public String toString()


 

Groovy Documentation