org.everit.json.schema.InternalValidationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of everit-json-schema Show documentation
Show all versions of everit-json-schema Show documentation
Implementation of the JSON Schema Core Draft v4 specification built with the org.json API
package org.everit.json.schema;
import java.util.List;
class InternalValidationException extends ValidationException {
InternalValidationException(Schema violatedSchema, Class> expectedType, Object actualValue) {
super(violatedSchema, expectedType, actualValue);
}
InternalValidationException(Schema violatedSchema, Class> expectedType, Object actualValue, String keyword,
String schemaLocation) {
super(violatedSchema, expectedType, actualValue, keyword, schemaLocation);
}
InternalValidationException(Schema violatedSchema, String message, String keyword, String schemaLocation) {
super(violatedSchema, message, keyword, schemaLocation);
}
InternalValidationException(Schema violatedSchema, StringBuilder pointerToViolation, String message,
List causingExceptions, String keyword, String schemaLocation) {
super(violatedSchema, pointerToViolation, message, causingExceptions, keyword, schemaLocation);
}
@Override
public synchronized Throwable fillInStackTrace() {
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy