/*
 * Created on Aug 2, 2006
 * 
 * (C) Copyright TANDBERG Television Ltd.
 */

package com.tandbergtv.workflow.sanmanager;

/**
 * Exception thrown in case of any problems performing SAN Management Tasks
 * 
 * @author Vijay Silva
 */
public class SANManagementException extends Exception
{
	private static final long serialVersionUID = 4246754665698178166L;

	/**
	 * Default Constructor
	 */
	public SANManagementException()
	{
		super();
	}

	/**
	 * @param message
	 *            The Error Message
	 */
	public SANManagementException(String message)
	{
		super(message);
	}

	/**
	 * @param message
	 *            The Error Message
	 * @param cause
	 *            The Nested Throwable
	 */
	public SANManagementException(String message, Throwable cause)
	{
		super(message, cause);
	}

	/**
	 * @param cause
	 *            The Nested Throwable
	 */
	public SANManagementException(Throwable cause)
	{
		super(cause);
	}
}
