io.deephaven.lang.shared.lsp.CompletionCancelled Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-open-api-lang-parser Show documentation
Show all versions of deephaven-open-api-lang-parser Show documentation
The 'open-api-lang-parser' project
/**
* 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");
}
}