Package jadex.bridge
Class StepAbortedException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- jadex.bridge.StepAbortedException
 
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class StepAbortedException extends java.lang.RuntimeExceptionException thrown when a step is aborted due to end state.- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected IComponentStep<?>stepThe step.protected java.lang.StringstepstringThe step string (for remote).
 - 
Constructor SummaryConstructors Constructor Description StepAbortedException()Create a new exception.StepAbortedException(IComponentStep<?> step)Create a new exception.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description IComponentStep<?>getStep()Get the step.java.lang.StringgetStepstring()Get the step string.voidsetStepstring(java.lang.String stepstring)Set the step string.java.lang.StringtoString()Include step in string.
 
- 
- 
- 
Field Detail- 
stepprotected IComponentStep<?> step The step.
 - 
stepstringprotected java.lang.String stepstring The step string (for remote).
 
- 
 - 
Constructor Detail- 
StepAbortedExceptionpublic StepAbortedException() Create a new exception.
 - 
StepAbortedExceptionpublic StepAbortedException(IComponentStep<?> step) Create a new exception.
 
- 
 - 
Method Detail- 
getSteppublic IComponentStep<?> getStep() Get the step.- Returns:
- The step
 
 - 
getStepstringpublic java.lang.String getStepstring() Get the step string.- Returns:
- the stepstring
 
 - 
setStepstringpublic void setStepstring(java.lang.String stepstring) Set the step string.- Parameters:
- stepstring- the stepstring to set
 
 - 
toStringpublic java.lang.String toString() Include step in string.- Overrides:
- toStringin class- java.lang.Throwable
 
 
- 
 
-