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

io.deephaven.engine.exceptions.RequestCancelledException Maven / Gradle / Ivy

There is a newer version: 0.37.1
Show newest version
/**
 * 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