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.RuntimeException
Exception thrown when a step is aborted due to end state.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected IComponentStep<?>
step
The step.protected java.lang.String
stepstring
The step string (for remote).
-
Constructor Summary
Constructors Constructor Description StepAbortedException()
Create a new exception.StepAbortedException(IComponentStep<?> step)
Create a new exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IComponentStep<?>
getStep()
Get the step.java.lang.String
getStepstring()
Get the step string.void
setStepstring(java.lang.String stepstring)
Set the step string.java.lang.String
toString()
Include step in string.
-
-
-
Field Detail
-
step
protected IComponentStep<?> step
The step.
-
stepstring
protected java.lang.String stepstring
The step string (for remote).
-
-
Constructor Detail
-
StepAbortedException
public StepAbortedException()
Create a new exception.
-
StepAbortedException
public StepAbortedException(IComponentStep<?> step)
Create a new exception.
-
-
Method Detail
-
getStep
public IComponentStep<?> getStep()
Get the step.- Returns:
- The step
-
getStepstring
public java.lang.String getStepstring()
Get the step string.- Returns:
- the stepstring
-
setStepstring
public void setStepstring(java.lang.String stepstring)
Set the step string.- Parameters:
stepstring
- the stepstring to set
-
toString
public java.lang.String toString()
Include step in string.- Overrides:
toString
in classjava.lang.Throwable
-
-