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

com.apollographql.subscription.exception.CallbackExtensionNotSpecifiedException Maven / Gradle / Ivy

The newest version!
package com.apollographql.subscription.exception;

/**
 * Exception thrown when user attempts to execute subscription through POST route without specifying
 * callback extension.
 */
public class CallbackExtensionNotSpecifiedException extends RuntimeException {

  public CallbackExtensionNotSpecifiedException() {
    super("Callback protocol not specified, subscription using POST request is not supported");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy