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

graphql.parser.ParseCancelledTooDeepException Maven / Gradle / Ivy

package graphql.parser;

import graphql.Internal;
import graphql.language.SourceLocation;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

@Internal
public class ParseCancelledTooDeepException extends InvalidSyntaxException {

    @Internal
    public ParseCancelledTooDeepException(String msg, @Nullable SourceLocation sourceLocation, @Nullable String offendingToken, int maxTokens, @NotNull String tokenType) {
        super(sourceLocation, msg, null, offendingToken, null);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy