io.deephaven.engine.table.impl.by.AggregationOperatorException 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.by;
import io.deephaven.UncheckedDeephavenException;
/**
* This exception provides more context when an aggregation operator throws an Exception.
*
*
* When an aggregation operator results in an Error, this exception is added as a suppressed exception.
*
*/
public class AggregationOperatorException extends UncheckedDeephavenException {
public AggregationOperatorException(String reason, Throwable cause) {
super(reason, cause);
}
public AggregationOperatorException(String reason) {
super(reason);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy