/**
 * DriverRuntimeException.java
 * Created May 30, 2006
 * Copyright (C) Tandberg Television 2006
 */
package com.tandbergtv.workflow.driver;

/**
 * Thrown to indicate a problem that usually can't be recovered from in code.
 * 
 * @author Sahil Verma
 */
public class DriverRuntimeException extends RuntimeException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 9007762056127749718L;

	/**
	 * Creates a DriverRuntimeException
	 */
	public DriverRuntimeException() {
		super();
	}

	/**
	 * Creates a DriverRuntimeException
	 * @param message
	 */
	public DriverRuntimeException(String message) {
		super(message);
	}

	/**
	 * Creates a DriverRuntimeException
	 * @param message
	 * @param cause
	 */
	public DriverRuntimeException(String message, Throwable cause) {
		super(message, cause);
	}

	/**
	 * Creates a DriverRuntimeException
	 * @param cause
	 */
	public DriverRuntimeException(Throwable cause) {
		super(cause);
	}

}
