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

graphql.java.client.response.GraphQLInternalErrorException Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
/**
 * 
 */
package graphql.java.client.response;

/**
 * Thrown when an internal error of the GraphQL generator occurs
 * 
 * @author EtienneSF
 */
public class GraphQLInternalErrorException extends GraphQLRequestPreparationException {

	private static final long serialVersionUID = 1L;

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy