com.apollographql.subscription.exception.CallbackInitializationFailedException 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;
import com.apollographql.subscription.callback.SubscriptionCallback;
/** Exception thrown when callback initialization fails. */
public class CallbackInitializationFailedException extends RuntimeException {
public CallbackInitializationFailedException(SubscriptionCallback callback, int statusCode) {
super(
"Subscription callback failed initialization: "
+ callback
+ ", server responded with: "
+ statusCode);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy