Package jadex.bridge
Class ComponentTerminatedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jadex.bridge.ComponentTerminatedException
-
- All Implemented Interfaces:
java.io.Serializable
public class ComponentTerminatedException extends java.lang.RuntimeException
Thrown when operations are invoked after an component has been terminated.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected IComponentIdentifier
cid
The component identifier.
-
Constructor Summary
Constructors Constructor Description ComponentTerminatedException()
Empty constructor for deserialization.ComponentTerminatedException(IComponentIdentifier cid)
Create an component termination exception.ComponentTerminatedException(IComponentIdentifier cid, java.lang.String message)
Create an component termination exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IComponentIdentifier
getComponentIdentifier()
Get the component identifier.void
printStackTrace()
void
setComponentIdentifier(IComponentIdentifier cid)
Get the component identifier.
-
-
-
Field Detail
-
cid
protected IComponentIdentifier cid
The component identifier.
-
-
Constructor Detail
-
ComponentTerminatedException
public ComponentTerminatedException()
Empty constructor for deserialization.
-
ComponentTerminatedException
public ComponentTerminatedException(IComponentIdentifier cid)
Create an component termination exception.
-
ComponentTerminatedException
public ComponentTerminatedException(IComponentIdentifier cid, java.lang.String message)
Create an component termination exception.
-
-
Method Detail
-
getComponentIdentifier
public IComponentIdentifier getComponentIdentifier()
Get the component identifier.- Returns:
- The component identifier.
-
setComponentIdentifier
public void setComponentIdentifier(IComponentIdentifier cid)
Get the component identifier.
-
printStackTrace
public void printStackTrace()
- Overrides:
printStackTrace
in classjava.lang.Throwable
-
-