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 AValidationFailedExceptionindicates 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 SummaryConstructors Constructor Description ValidationFailedException(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.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
ValidationFailedExceptionpublic ValidationFailedException(String message) Creates aValidationFailedExceptionwith a caller specified (error) message.- Parameters:
- message- The message with an explanation of the exception.
 
 - 
ValidationFailedExceptionpublic ValidationFailedException(String message, Throwable cause) 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.
 
 
- 
 
-