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

com.hazelcast.org.everit.json.schema.InternalValidationException Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
package com.hazelcast.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