/**
 * DataOperationException.java
 * Created on Jun 20, 2008
 * (C) Copyright TANDBERG Television Ltd.
 */
package com.tandbergtv.watchpoint.pmm.util;

/**
 * Exception thrown in case there is an error performing a Data Operation
 * 
 * @author Vlada Jakobac
 * 
 */
public class DataOperationException extends Exception {
	private static final long serialVersionUID = -825231698444685567L;

	/**
	 * Default Constructor
	 */
	public DataOperationException() {
		super();
		
	}

	/**
	 * @param message
	 *            The Error Message
	 * @param cause
	 *            The Nested Throwable
	 */
	public DataOperationException(String message, Throwable cause) {
		super(message, cause);
		
	}

	/**
	 * @param message
	 *            The Error Message
	 */
	public DataOperationException(String message) {
		super(message);
		
	}

	/**
	 * @param cause
	 *            The nested throwable
	 */
	public DataOperationException(Throwable cause) {
		super(cause);
		
	}

}
