package com.tandbergtv.workflow.executionhandler.handlers;

/**
 * @author cgudla
 * this is used while throwing explicitly an exception from the execution handler
 */
public class ExecutionHandlerException extends RuntimeException
{

	private static final long serialVersionUID = 1L;

	public ExecutionHandlerException()
	{
		super();
	}

	/**
	 * @param exceptionMessage
	 */
	public ExecutionHandlerException(String exceptionMessage)
	{
		super(exceptionMessage);
	}

	/**
	 * @param exceptionMessage
	 * @param exception
	 */
	public ExecutionHandlerException(String exceptionMessage, Throwable exception)
	{
		super(exceptionMessage, exception);
	}

	/**
	 * @param exception
	 */
	public ExecutionHandlerException(Throwable exception)
	{
		super(exception);
	}

}
