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

com.graphql_java_generator.client.response.GraphQLExecutionException Maven / Gradle / Ivy

There is a newer version: 2.0RC1
Show newest version
/**
 * 
 */
package com.graphql_java_generator.client.response;

import com.graphql_java_generator.client.QueryExecutorImpl;

/**
 * Thrown when the client could not parse the GraphQL response. This response is sent when the client can't understand
 * the response, which is usually the client fault.
* To debug this, the client should be put in trace mode, and the raw response should be checked against the * {@link QueryExecutorImpl#parseResponse(String, String, graphql.java.client.request.ObjectResponse)} method. * * @author EtienneSF */ public class GraphQLExecutionException extends Exception { private static final long serialVersionUID = 1L; public GraphQLExecutionException(String msg) { super(msg); } public GraphQLExecutionException(String msg, Throwable cause) { super(msg, cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy