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

dev.openfga.language.errors.DslErrorsException Maven / Gradle / Ivy

There is a newer version: v0.2.0-beta.2
Show newest version
package dev.openfga.language.errors;

import java.util.List;

public class DslErrorsException extends Exception {

    private final List errors;

    public DslErrorsException(List errors) {
        super(Errors.messagesFromErrors(errors));
        this.errors = errors;
    }

    public List getErrors() {
        return errors;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy