io.smallrye.graphql.client.InvalidResponseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smallrye-graphql-client-api Show documentation
Show all versions of smallrye-graphql-client-api Show documentation
SmallRye specific Client API, extending the MicroProfile client api, allowing us to play with the api first before we move it to the spec
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);
}
}