Class PreparationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.digicert.validation.exceptions.DcvException
com.digicert.validation.exceptions.PreparationException
- All Implemented Interfaces:
Serializable
Exception thrown when there is an issue with the preparation of the validation.
This exception is specifically used to indicate problems that occur during the preparation phase of the validation process. Issues in this phase can stem from various sources such as misconfigurations, missing data, or other pre-validation errors.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPreparationException
(Set<DcvError> errors) Constructs a new PreparationException with a set of the specified DcvErrors. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PreparationException
Constructs a new PreparationException with a set of the specified DcvErrors.- Parameters:
errors
- the set of DCV errors that caused the exception to be thrown.
-