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

com.graphql_java_generator.exception.GraphQLRequestExecutionException 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 execution. This is typically, when Bind Variable are mission, while
 * executing a request.
 * 
 * @author etienne-sf
 */
public class GraphQLRequestExecutionException extends Exception {

	private static final long serialVersionUID = 1L;

	public GraphQLRequestExecutionException(String msg) {
		super(msg);
	}

	public GraphQLRequestExecutionException(String msg, Throwable cause) {
		super(msg, cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy