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
public class UnknownEntityException extends RuntimeException
This exception indicates that a requested entity identified by some primary key (ID, name,...) does not exist.- Author:
- Ulrich Kreher
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownEntityException()
Creates 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 Detail
-
UnknownEntityException
public UnknownEntityException()
Creates a new exception indicating that a requested entity does not exist.
-
UnknownEntityException
public UnknownEntityException(String message)
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.
-
-