io.deephaven.lang.api.ParseCancelled 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.api;
/**
* Thrown from the parser if the thread interrupt status is set.
*
* We don't want to deal with a checked exception from generated code, so we'll just use this, which can be thrown
* freely.
*/
public class ParseCancelled extends RuntimeException {
}