com.apollographql.subscription.exception.CallbackExtensionNotSpecifiedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of federation-spring-subscription-callback Show documentation
Show all versions of federation-spring-subscription-callback Show documentation
GraphQL Java server support for Apollo Federation
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