Package de.aristaflow.adept2.util
Class UnknownEntityException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.aristaflow.adept2.util.UnknownEntityException
- All Implemented Interfaces:
Serializable
This exception indicates that a requested entity identified by some
primary key (ID, name,...) does not exist.
- Author:
- Ulrich Kreher
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new exception indicating that a requested entity does not exist.UnknownEntityException(String message) Creates a new exception with the designated message indicating that a requested entity does not exist. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnknownEntityException
public UnknownEntityException()Creates a new exception indicating that a requested entity does not exist. -
UnknownEntityException
Creates a new exception with the designated message indicating that a requested entity does not exist.- Parameters:
message- The message for this exception with further information on the requested entity that does not exist.
-