Package rife.continuations.exceptions
Class CallTargetNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
rife.continuations.exceptions.CallTargetNotFoundException
- All Implemented Interfaces:
Serializable
,ControlFlowRuntimeException
public class CallTargetNotFoundException
extends RuntimeException
implements ControlFlowRuntimeException
Thrown when a call target couldn't be resolved to a proper
ContinuableObject
.- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorDescriptionCallTargetNotFoundException
(Object target, Throwable cause) Instantiates a new exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CallTargetNotFoundException
Instantiates a new exception.- Parameters:
target
- the original call targetcause
- the cause of the retrieval failure; ornull
if there was no exception cause- Since:
- 1.0
-