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

com.github.fge.jsonschema.exceptions.InvalidInstanceException Maven / Gradle / Ivy

There is a newer version: 2.2.6
Show newest version
package com.github.fge.jsonschema.exceptions;

import com.github.fge.jsonschema.report.ProcessingMessage;

/**
 * Exception thrown by the validation process when an instance is invalid
 */
public final class InvalidInstanceException
    extends ProcessingException
{
    public InvalidInstanceException(final ProcessingMessage message)
    {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy