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

io.deephaven.engine.table.impl.by.AggregationOperatorException Maven / Gradle / Ivy

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