/**
 * DriverException.java
 * Created May 30, 2006
 * Copyright (C) Tandberg Television 2006
 */
package com.tandbergtv.workflow.driver;

/**
 * Base class of all exceptions thrown to indicate problems during a workflow engine driver
 * operation. 
 * 
 * @author Sahil Verma
 */
public class DriverException extends Exception {

	/**
	 * 
	 */
	private static final long serialVersionUID = -8448125245435711788L;

	/**
	 * Creates a DriverException
	 */
	public DriverException() {
		super();
	}

	/**
	 * Creates a DriverException
	 * @param message
	 */
	public DriverException(String message) {
		super(message);
	}

	/**
	 * Creates a DriverException
	 * @param message
	 * @param cause
	 */
	public DriverException(String message, Throwable cause) {
		super(message, cause);
	}

	/**
	 * Creates a DriverException
	 * @param cause
	 */
	public DriverException(Throwable cause) {
		super(cause);
	}

}
