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

io.smallrye.graphql.client.InvalidResponseException Maven / Gradle / Ivy

Go to download

SmallRye specific Client API, extending the MicroProfile client api, allowing us to play with the api first before we move it to the spec

There is a newer version: 2.11.0
Show newest version
package io.smallrye.graphql.client;

/**
 * Marks a response that had unexpected contents and the client was unable to properly process it.
 * This can be either due to an error on the server side (returning non-conformant responses),
 * but possibly also due to client-side issues, for example
 * a mismatch between model classes and the schema used on the server.
 */
public class InvalidResponseException extends RuntimeException {

    public InvalidResponseException(String message) {
        super(message);
    }

    public InvalidResponseException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy