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

graphql.schema.idl.errors.MissingScalarImplementationError Maven / Gradle / Ivy

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

import graphql.Internal;

import static java.lang.String.format;

@Internal
public class MissingScalarImplementationError extends BaseError {

    public MissingScalarImplementationError(String scalarName) {
        super(null, format("There is no scalar implementation for the named  '%s' scalar type", scalarName));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy