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

io.castled.schema.exceptions.SchemaValidationException Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.schema.exceptions;


import io.castled.schema.models.SchemaType;
import lombok.Getter;

public class SchemaValidationException extends SchemaException {

    @Getter
    private final SchemaType schemaType;

    public SchemaValidationException(SchemaType schemaType, String message) {
        super(message);
        this.schemaType = schemaType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy