com.infomaximum.cluster.graphql.exception.GraphQLExecutorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cluster-graphql Show documentation
Show all versions of cluster-graphql Show documentation
Library for creating a light cluster
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);
}
}