
net.sf.jagg.exception.AggregatorCreationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jagg-core Show documentation
Show all versions of jagg-core Show documentation
jAgg is a Java 5.0 API that supports “group by” operations on Lists of Java objects: aggregate operations such as count, sum, max, min, avg, and many more. It also allows custom aggregate operations.
The newest version!
package net.sf.jagg.exception;
/**
* An AggregatorCreationException
is a JaggException
* that indicates that there was a problem attempting to instantiate an
* AggregateFunction
.
*
* @author Randy Gettman
* @since 0.9.0
*/
public class AggregatorCreationException extends JaggException
{
/**
* Create a AggregatorCreationException
.
*/
public AggregatorCreationException()
{
super();
}
/**
* Create a AggregatorCreationException
with the given message.
* @param message The message.
*/
public AggregatorCreationException(String message)
{
super(message);
}
/**
* Create a AggregatorCreationException
.
* @param cause The cause.
*/
public AggregatorCreationException(Throwable cause)
{
super(cause);
}
/**
* Create a AggregatorCreationException
with the given message.
* @param message The message.
* @param cause The cause.
*/
public AggregatorCreationException(String message, Throwable cause)
{
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy