io.deephaven.engine.exceptions.RequestCancelledException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-table Show documentation
Show all versions of deephaven-engine-table Show documentation
Engine Table: Implementation and closely-coupled utilities
/**
* Copyright (c) 2016-2023 Deephaven Data Labs and Patent Pending
*/
package io.deephaven.engine.exceptions;
import io.deephaven.UncheckedDeephavenException;
import org.jetbrains.annotations.NotNull;
/**
* This exception is used when a result cannot be returned because the request was cancelled.
*/
public class RequestCancelledException extends UncheckedDeephavenException {
public RequestCancelledException(@NotNull final String message) {
super(message);
}
public RequestCancelledException(@NotNull final String message, @NotNull final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy