Class DataConsistencyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.aristaflow.adept2.model.common.DataConsistencyException
- All Implemented Interfaces:
Serializable
A
DataConsistencyException indicates an inconsistency in the data (of a service).- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDataConsistencyException(String message) Creates a newDataConsistencyExceptionwith the designated message.DataConsistencyException(String message, Throwable cause) Creates a newDataConsistencyExceptionwith the designated message and the designated cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DataConsistencyException
Creates a newDataConsistencyExceptionwith the designated message.- Parameters:
message- The message for the createdDataConsistencyException.
-
DataConsistencyException
Creates a newDataConsistencyExceptionwith the designated message and the designated cause.- Parameters:
message- The message for the createdDataConsistencyException.cause- The cause for the createdDataConsistencyException.
-