graphql.execution.DataFetcherExceptionHandlerResult Maven / Gradle / Ivy
package graphql.execution;
import graphql.GraphQLError;
import graphql.PublicApi;
import java.util.ArrayList;
import java.util.List;
import static graphql.Assert.assertNotNull;
/**
* The result object for {@link graphql.execution.DataFetcherExceptionHandler}s
*/
@PublicApi
public class DataFetcherExceptionHandlerResult {
private final List errors;
private DataFetcherExceptionHandlerResult(Builder builder) {
this.errors = builder.errors;
}
public List getErrors() {
return errors;
}
public static Builder newResult() {
return new Builder();
}
public static Builder newResult(GraphQLError error) {
return new Builder().error(error);
}
public static class Builder {
private final List errors = new ArrayList<>();
public Builder errors(List errors) {
this.errors.addAll(assertNotNull(errors));
return this;
}
public Builder error(GraphQLError error) {
errors.add(assertNotNull(error));
return this;
}
public DataFetcherExceptionHandlerResult build() {
return new DataFetcherExceptionHandlerResult(this);
}
}
}