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

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

Go to download

Engine API: Engine API module, suitable as a compile-time dependency for most queries

The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.engine.exceptions;

import io.deephaven.UncheckedDeephavenException;
import org.jetbrains.annotations.NotNull;

/**
 * Operations that require input to conform to ordering requirements may throw this exception when out of order data is
 * encountered.
 */
public class OutOfOrderException extends UncheckedDeephavenException {

    public OutOfOrderException(@NotNull final String reason) {
        super(reason);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy