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

graphql.kickstart.autoconfigure.annotations.exceptions.MissingQueryResolverException Maven / Gradle / Ivy

package graphql.kickstart.autoconfigure.annotations.exceptions;

public class MissingQueryResolverException extends RuntimeException {

  private static final long serialVersionUID = 1L;

  public MissingQueryResolverException() {
    super(
        "No query resolver provided. When using GraphQL Annotations, one query resolver must be provided.");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy