graphql.schema.idl.errors.DirectiveIllegalLocationError Maven / Gradle / Ivy
package graphql.schema.idl.errors;
import graphql.Internal;
import graphql.language.DirectiveDefinition;
import graphql.language.Node;
import static java.lang.String.format;
@Internal
public class DirectiveIllegalLocationError extends BaseError {
public DirectiveIllegalLocationError(Node element, String elementName, String directiveName, String locationName) {
super(element,
format("'%s' %s tried to use a directive '%s' in the '%s' location but that is illegal",
elementName, BaseError.lineCol(element), directiveName, locationName
));
}
public DirectiveIllegalLocationError(DirectiveDefinition element, String locationName) {
super(element,
format("'%s' %s tried to use a location '%s' but that is illegal",
element.getName(), BaseError.lineCol(element), locationName
));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy