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

graphql.execution.batched.BatchAssertionFailed Maven / Gradle / Ivy

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

import graphql.GraphQLException;
import graphql.PublicApi;


@Deprecated
@PublicApi
public class BatchAssertionFailed extends GraphQLException {
    public BatchAssertionFailed() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy