/**
 * MediaPathAPIException.java
 * Created on Aug 1, 2008
 * (C) Copyright TANDBERG Television Ltd.
 */
package com.tandbergtv.workflow.adaptor.dispatcher;

/**
 * Exception thrown in case there is an error performing Media Path Manager API
 * call
 * 
 * @author Vlada Jakobac
 * 
 */
public class MediaPathAPIException extends Exception {

	private static final long serialVersionUID = -825231698444685567L;

	/**
	 * Default Constructor
	 */
	public MediaPathAPIException() {
		super();

	}

	/**
	 * @param message
	 *            The Error Message
	 * @param cause
	 *            The Nested Throwable
	 */
	public MediaPathAPIException(String message, Throwable cause) {
		super(message, cause);

	}

	/**
	 * @param message
	 *            The Error Message
	 */
	public MediaPathAPIException(String message) {
		super(message);

	}

	/**
	 * @param cause
	 *            The nested throwable
	 */
	public MediaPathAPIException(Throwable cause) {
		super(cause);

	}

}
