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

com.apollographql.federation.graphqljava.exceptions.MissingKeyException Maven / Gradle / Ivy

The newest version!
package com.apollographql.federation.graphqljava.exceptions;

/**
 * Exception thrown when GraphQL object type does not specify all @keys specified on its interface.
 */
public class MissingKeyException extends RuntimeException {

  public MissingKeyException(String objectType, String interfaceType) {
    super(
        String.format(
            "Object %s does not specify @key fields specified by its interface %s",
            objectType, interfaceType));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy