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

io.deephaven.lang.shared.lsp.CompletionCancelled Maven / Gradle / Ivy

There is a newer version: 0.36.1
Show newest version
/**
 * Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
 */
package io.deephaven.lang.shared.lsp;

/**
 * Thrown from the document parser if the user has updated the document while an ongoing completion request was blocking
 * on stale input.
 *
 * This is used to fast-path quitting a completion request because the document was invalidated.
 *
 */
public class CompletionCancelled extends RuntimeException {

    public CompletionCancelled() {
        super("Completion request cancelled");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy