com.lacunasoftware.restpkicore.ValidationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restpkicore-client Show documentation
Show all versions of restpkicore-client Show documentation
Classes to consume Lacuna Software REST PKI Core
package com.lacunasoftware.restpkicore;
/**
* Thrown to indicate that a validation failed while fulfilling an API call.
*/
public class ValidationException extends RestException {
private ValidationResults validationResults;
ValidationException(String verb, String url, ValidationResults vr) {
super(vr.toString(), verb, url);
this.validationResults = vr;
}
public ValidationResults getValidationResults() {
return validationResults;
}
}