graphql.ErrorType Maven / Gradle / Ivy
package graphql;
/**
* All the errors in graphql belong to one of these categories
*/
@PublicApi
public enum ErrorType implements ErrorClassification {
InvalidSyntax,
ValidationError,
DataFetchingException,
NullValueInNonNullableField,
OperationNotSupported,
ExecutionAborted
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy