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

io.smallrye.graphql.client.generator.GraphQLGeneratorException Maven / Gradle / Ivy

The newest version!
package io.smallrye.graphql.client.generator;

public class GraphQLGeneratorException extends RuntimeException {
    public GraphQLGeneratorException(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy