io.deephaven.engine.table.impl.sources.ConstituentTableException 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
package io.deephaven.engine.table.impl.sources;
import io.deephaven.UncheckedDeephavenException;
import org.jetbrains.annotations.NotNull;
/**
* This exception is thrown when a constituent table of a {@link UnionSourceManager} encounters an error.
*/
public class ConstituentTableException extends UncheckedDeephavenException {
public ConstituentTableException(@NotNull final String description, @NotNull final Throwable cause) {
super(description, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy