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

org.jasig.resource.aggr.AggregationException Maven / Gradle / Ivy

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