/*
 * Created on Jul 16, 2008 (C) Copyright TANDBERG Television Ltd.
 */

package com.tandbergtv.watchpoint.pmm.action.schedule.distribution;

/**
 * Exception thrown as a result of failure during the Transformation of a Schedule
 * 
 * @author Vijay Silva
 */
public class ScheduleTransformException extends Exception {

	/* Serialization UID */
	private static final long serialVersionUID = -3868693363705607558L;

	/**
	 * Default Constructor
	 */
	public ScheduleTransformException() {
	}

	/**
	 * @param message The detail message
	 */
	public ScheduleTransformException(String message) {
		super(message);
	}

	/**
	 * @param cause The cause
	 */
	public ScheduleTransformException(Throwable cause) {
		super(cause);
	}

	/**
	 * @param message The detail message
	 * @param cause The cause
	 */
	public ScheduleTransformException(String message, Throwable cause) {
		super(message, cause);
	}
}
