graphql.schema.diffing.SchemaDiffingCancelledException Maven / Gradle / Ivy
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