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

com.graphql_java_generator.exception.GraphQLResponseParseException Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
/**
 * 
 */
package com.graphql_java_generator.exception;

/**
 * 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_Forum_Test#parseResponseForStarWarsSchema(String, String, graphql.java.client.request.ObjectResponse)} * method. * * @author etienne-sf */ public class GraphQLResponseParseException extends GraphQLRequestExecutionException { private static final long serialVersionUID = 1L; public GraphQLResponseParseException(String msg) { super(msg); } public GraphQLResponseParseException(String msg, Throwable cause) { super(msg, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy