io.deephaven.engine.exceptions.SnapshotUnsuccessfulException 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 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);
}
}