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

graphql.parser.ParseCancelledException Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.parser;

import graphql.PublicApi;
import graphql.language.SourceLocation;

@PublicApi
public class ParseCancelledException extends InvalidSyntaxException {

    public ParseCancelledException(String msg, SourceLocation sourceLocation, String offendingToken) {
        super(sourceLocation, msg, null, offendingToken, null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy