package com.tandbergtv.workflow.comm.routing;

/**
 * Exception thrown when there is a failure delivering a Message by the Routing Service 
 *
 * @author Vijay Silva
 */
public class CommunicationException extends Exception {

	private static final long serialVersionUID = 615365008590898881L;

	
	
	/**
	 * 
	 */
	public CommunicationException()
	{
		super();
	}



	/**
	 * @param arg0
	 */
	public CommunicationException(String arg0)
	{
		super(arg0);
	}



	/**
	 * @param arg0
	 */
	public CommunicationException(Throwable arg0)
	{
		super(arg0);
	}



	public CommunicationException(String message, Throwable cause){
		super(message, cause);
	}
}
