package graphql.schema.idl.errors; import graphql.GraphQLError; import graphql.GraphQLException; import graphql.schema.idl.SchemaParser; import java.util.ArrayList; import java.util.List; /** * A number of problems can occur when using the schema tools like {@link SchemaParser} * or {@link graphql.schema.idl.SchemaGenerator} classes and they are reported via this * exception as a list of {@link GraphQLError}s */ public class SchemaProblem extends GraphQLException { private final List<GraphQLError> errors; public SchemaProblem(List<GraphQLError> errors) { this.errors = new ArrayList<>(errors); } public List<GraphQLError> getErrors() { return errors; } @Override public String toString() { return "SchemaProblem{" + "errors=" + errors + '}'; } }