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