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
public class ValidationFailedException extends Exception
AValidationFailedException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ValidationFailedException(String message)
Creates aValidationFailedException
with a caller specified (error) message.ValidationFailedException(String message, Throwable cause)
Creates aValidationFailedException
with a caller specified (error) message and aThrowable
providing 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 Detail
-
ValidationFailedException
public ValidationFailedException(String message)
Creates aValidationFailedException
with a caller specified (error) message.- Parameters:
message
- The message with an explanation of the exception.
-
ValidationFailedException
public ValidationFailedException(String message, Throwable cause)
Creates aValidationFailedException
with a caller specified (error) message and aThrowable
providing more information.- Parameters:
message
- The message with an explanation of the exception.cause
- The cause providing detailed information.
-
-