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

java.com.graphql_java_generator.exception.GraphQLRequestPreparationException Maven / Gradle / Ivy

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

/**
 * Thrown when an error occurs during the request preparation. This is typically, when the {@link Builder} is called
 * with invalid values (non existing fields, field from other objects...) or when a call to a query is attempted with a
 * ObjectResponse build for another GraphQL type (for client mode)
* * @author etienne-sf */ public class GraphQLRequestPreparationException extends Exception { private static final long serialVersionUID = 1L; public GraphQLRequestPreparationException(String msg) { super(msg); } public GraphQLRequestPreparationException(String msg, Throwable cause) { super(msg, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy