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

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

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

import graphql.GraphQLException;
import graphql.PublicApi;
import graphql.schema.idl.RuntimeWiring;
import graphql.schema.idl.TypeRuntimeWiring;

/**
 * An exception that is throw when {@link RuntimeWiring.Builder#strictMode()} or {@link TypeRuntimeWiring.Builder#strictMode()} is true and
 * something gets redefined.
 */
@PublicApi
public class StrictModeWiringException extends GraphQLException {
    public StrictModeWiringException(String msg) {
        super(msg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy