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

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

package com.apollographql.federation.graphqljava.exceptions;

/** Exception thrown when attempting to rename directive imports that cannot be renamed. */
public class UnsupportedRenameException extends RuntimeException {

  public UnsupportedRenameException(String name) {
    super("Current version of Apollo Federation does not allow renaming " + name + " directive.");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy