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

se.hiq.oss.json.schema.validation.InvalidJsonException Maven / Gradle / Ivy

There is a newer version: 0.8
Show newest version
package se.hiq.oss.json.schema.validation;


import com.github.fge.jsonschema.core.report.ProcessingReport;

public class InvalidJsonException extends RuntimeException {

    private final ProcessingReport processingReport;

    public InvalidJsonException(final ProcessingReport processingReport, final String message) {
        super(message);
        this.processingReport = processingReport;
    }

    public ProcessingReport getProcessingReport() {
        return processingReport;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy