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

dev.harrel.jsonschema.JsonSchemaException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy