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

com.infomaximum.cluster.graphql.exception.GraphQLExecutorException Maven / Gradle / Ivy

There is a newer version: 1.1.11
Show newest version
package com.infomaximum.cluster.graphql.exception;

public class GraphQLExecutorException extends RuntimeException {

    public GraphQLExecutorException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy