ccs.cpc.impl
Class RecursionFailedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by ccs.cpc.impl.RecursionFailedException
All Implemented Interfaces:
java.io.Serializable

public class RecursionFailedException
extends java.lang.Exception

Thrown by recursion engine payloads to indicate that this recursion is a loser and won't continue. A RecursionFailedException

See Also:
Serialized Form

Constructor Summary
RecursionFailedException(java.lang.Exception cause)
          Initialise a new RecursionFailedException.
 
Method Summary
 
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
 

Constructor Detail

RecursionFailedException

public RecursionFailedException(java.lang.Exception cause)
Initialise a new RecursionFailedException.

Parameters:
cause - The reason the recursion failed. If non-null, it will be reported to the user; if not, the recursion will abort silently. (Eg. when thrown due to a cancel in a confirmation.)