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

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

There is a newer version: 0.36.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 thrown when {@link io.deephaven.engine.table.impl.remote.ConstructSnapshot} fails to successfully
 * execute the data snapshot function in an otherwise consistent state.
 */
public class SnapshotUnsuccessfulException extends UncheckedDeephavenException {
    public SnapshotUnsuccessfulException(@NotNull final String message) {
        super(message);
    }

    public SnapshotUnsuccessfulException(@NotNull final String message, @NotNull final Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy