RelationNotFoundExceptionpublic class RelationNotFoundException extends RelationException This exception is raised when there is no relation for a given relation id
in a Relation Service. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public RelationNotFoundException()Default constructor, no message put in exception.
super();
| public RelationNotFoundException(String message)Constructor with given message put in exception.
super(message);
|
|