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

graphql.schema.diffing.SchemaDiffingCancelledException Maven / Gradle / Ivy

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

import graphql.Internal;

@Internal
public class SchemaDiffingCancelledException extends RuntimeException {
    SchemaDiffingCancelledException(boolean byInterrupt) {
        super("Schema diffing job was cancelled by " + (byInterrupt ? "thread interrupt" : "stop call"));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy