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

graphql.GraphQLException Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql;


@Internal
public class GraphQLException extends RuntimeException {

    public GraphQLException() {
    }

    public GraphQLException(String message) {
        super(message);
    }

    public GraphQLException(String message, Throwable cause) {
        super(message, cause);
    }

    public GraphQLException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy