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

org.distributeme.agents.AgencyException Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package org.distributeme.agents;

/**
 * Base exception class for agency operations.
 * @author lrosenberg
 */
public class AgencyException extends Exception{
	/**
	 *Serial Version UID. 
	 */
	private static final long serialVersionUID = 1L;
	
	public AgencyException(String message){
		super(message);
	}
	public AgencyException(String message, Exception cause){
		super(message, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy