package com.tandbergtv.watchpoint.pmm.core;

/**
 * General exception class for PMM.
 *  
 * @author Raj Prakash
 */
public class PMMException extends Exception {
	
	private static final long serialVersionUID = 7197467298182080374L;

	public PMMException() {
		super();
	}

	public PMMException(String message) {
		super(message);
	}

	public PMMException(String message, Throwable cause) {
		super(message, cause);
	}

	public PMMException(Throwable cause) {
		super(cause);
	}

}
