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

net.n2oapp.framework.boot.graphql.N2oGraphQlException Maven / Gradle / Ivy

There is a newer version: 7.28.1
Show newest version
package net.n2oapp.framework.boot.graphql;

import lombok.Getter;
import net.n2oapp.criteria.dataset.DataSet;
import net.n2oapp.framework.api.data.exception.N2oQueryExecutionException;

/**
 * Ошибка обработки GraphQL запроса
 */
public class N2oGraphQlException extends N2oQueryExecutionException {

    @Getter
    private DataSet response;

    public N2oGraphQlException(String message, String query, DataSet response) {
        super(message, query);
        this.response = response;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy