/**
 * DRIVER project 2006-2007
 * 
 * file		:	A2Exception.java
 * package	: 	eu.dnetlib.enabling.aas.service
 * project	:	driver-aa
 * created	:	2006-09-05
 * author	:	jarwyp
 */
package eu.dnetlib.enabling.aas.service;

import java.io.Serializable;

/**
 * Base exception of the AAS system.
 * 
 * @author jarwyp
 *
 */
public class A2Exception extends Exception implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = -2455051149551751533L;

	/**
	 * Basic constructor.
	 */
	public A2Exception() {
	}

	/**
	 * Derived constructor.
	 * @param arg0
	 */
	public A2Exception(String arg0) {
		super(arg0);
	}

	/**
	 * Derived constructor
	 * @param arg0
	 */
	public A2Exception(Throwable arg0) {
		super(arg0);
	}

	/**
	 * Derived constructor
	 * @param arg0
	 * @param arg1
	 */
	public A2Exception(String arg0, Throwable arg1) {
		super(arg0, arg1);
	}

}
