Class ValidationFailedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.aristaflow.adept2.model.datamanagement.ValidationFailedException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MandatoryParameterValueNotSetException
A
ValidationFailedException indicates that the validation of
written values in the data manager has failed. This may be due to problems
when writing to the database or in case mandatory output parameters have no
values.- Author:
- Ulrich Kreher
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionValidationFailedException(String message) Creates aValidationFailedExceptionwith a caller specified (error) message.ValidationFailedException(String message, Throwable cause) Creates aValidationFailedExceptionwith a caller specified (error) message and aThrowableproviding more information. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ValidationFailedException
Creates aValidationFailedExceptionwith a caller specified (error) message.- Parameters:
message- The message with an explanation of the exception.
-
ValidationFailedException
Creates aValidationFailedExceptionwith a caller specified (error) message and aThrowableproviding more information.- Parameters:
message- The message with an explanation of the exception.cause- The cause providing detailed information.
-