All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lacunasoftware.restpkicore.ValidationException Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy