xpertss.json.schema.exceptions.InvalidInstanceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema Show documentation
Show all versions of json-schema Show documentation
A Java implementation of the JSON Schema specification.
The newest version!
package xpertss.json.schema.exceptions;
import xpertss.json.schema.core.exceptions.ProcessingException;
import xpertss.json.schema.core.report.ProcessingMessage;
/**
* Exception thrown by the validation process when an instance is invalid
*/
public final class InvalidInstanceException extends ProcessingException {
public InvalidInstanceException(final ProcessingMessage message)
{
super(message);
}
}