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

io.deephaven.engine.table.impl.sources.ConstituentTableException Maven / Gradle / Ivy

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