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

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

package com.apollographql.federation.graphqljava.exceptions;

/** Exception thrown while processing link that specifies currently not supported version. */
public class UnsupportedFederationVersionException extends RuntimeException {
  public UnsupportedFederationVersionException(String federationSpec) {
    super("Specified federation spec = " + federationSpec + " is currently not supported");
  }

  public UnsupportedFederationVersionException(String federationSpec, Exception e) {
    super("Specified federation spec = " + federationSpec + " is currently not supported", e);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy