se.hiq.oss.json.schema.validation.InvalidJsonException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema-discovery Show documentation
Show all versions of json-schema-discovery Show documentation
Auto-detected JSON schema classes and provide a repository for easy lookup
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