graphql.schema.idl.errors.MissingScalarImplementationError Maven / Gradle / Ivy
The newest version!
package graphql.schema.idl.errors;
import static java.lang.String.format;
public class MissingScalarImplementationError extends BaseError {
public MissingScalarImplementationError(String scalarName) {
super(null, format("There is no scalar implementation for the named '%s' scalar type", scalarName));
}
}