dev.harrel.jsonschema.JsonSchemaException 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
Library for JSON schema validation
The newest version!
package dev.harrel.jsonschema;
/**
* Base exception class for {@link dev.harrel.jsonschema}.
*/
public abstract class JsonSchemaException extends RuntimeException {
JsonSchemaException(String message, Throwable cause) {
super(message, cause);
}
JsonSchemaException(String message) {
super(message);
}
}