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

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

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

/**
 * Thrown when an internal error of the GraphQL generator occurs
 * 
 * @author etienne-sf
 */
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 - 2024 Weber Informatics LLC | Privacy Policy