![JAR search and dependency download from the Maven repository](/logo.png)
graphql.servlet.GraphQLErrorHandler Maven / Gradle / Ivy
package graphql.servlet;
import graphql.GraphQLError;
import java.util.List;
/**
* @author Andrew Potter
*/
public interface GraphQLErrorHandler {
default boolean errorsPresent(List errors) {
return errors != null && !errors.isEmpty();
}
List processErrors(List errors);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy