org.jasig.resource.aggr.AggregationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resource-aggregator-api Show documentation
Show all versions of resource-aggregator-api Show documentation
API and object model for the Resource Aggregator project.
The newest version!
/**
*
*/
package org.jasig.resource.aggr;
/**
* Base Exception type for Aggregation problems.
*
* @author Nicholas Blair, [email protected]
*/
public class AggregationException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
*
*/
public AggregationException() {
}
/**
* @param message
*/
public AggregationException(String message) {
super(message);
}
/**
* @param cause
*/
public AggregationException(Throwable cause) {
super(cause);
}
/**
* @param message
* @param cause
*/
public AggregationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy