Class UnknownEntityException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.aquima.interactions.foundation.exception.AppException
com.aquima.interactions.metamodel.MetaModelException
com.aquima.interactions.metamodel.exception.UnknownEntityException
- All Implemented Interfaces:
Serializable
This type of exception is used when an invalid entity is encountered.
- Since:
- 5.0
- Author:
- O. Kerpershoek
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnknownEntityException
(String entityName) Constructs the exception with the invalid entity name.UnknownEntityException
(String entityName, String message) Constructs the exception with the invalid entity name and a message containing more information about the cause or place of the error. -
Method Summary
Modifier and TypeMethodDescriptionThis method returns the name of the entity that was invalid.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnknownEntityException
Constructs the exception with the invalid entity name.- Parameters:
entityName
- The name of the entity that is invalid
-
UnknownEntityException
Constructs the exception with the invalid entity name and a message containing more information about the cause or place of the error.- Parameters:
entityName
- The name of the entity that is invalidmessage
- Message containing additional information about the error.
-
-
Method Details