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

org.rapidgraphql.exceptions.GraphQLSchemaGenerationException Maven / Gradle / Ivy

There is a newer version: 2.3.1
Show newest version
package org.rapidgraphql.exceptions;

public class GraphQLSchemaGenerationException extends RuntimeException {
    public GraphQLSchemaGenerationException(String message) {
        super(message);
    }
    public GraphQLSchemaGenerationException(String message, Exception e) {
        super(message, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy