/*
 * Created on Jun 21, 2006
 * 
 * (C) Copyright TANDBERG Television Ltd.
 */

package com.tandbergtv.watchpoint.pmm.dao.hibernate;

/**
 * Exception thrown when the Context cannot be successfully initialized.
 * 
 * @author Vijay Silva
 */
public class HibernateContextException extends RuntimeException
{
	private static final long serialVersionUID = -545261242656496623L;

	/**
	 * Default Constructor
	 */
	public HibernateContextException()
	{
		super();
	}

	/**
	 * @param message
	 *            The Error Message
	 */
	public HibernateContextException(String message)
	{
		super(message);
	}

	/**
	 * @param message
	 *            The Error Message
	 * @param cause
	 *            The nested exception
	 */
	public HibernateContextException(String message, Throwable cause)
	{
		super(message, cause);
	}

	/**
	 * @param cause
	 *            The nested exception
	 */
	public HibernateContextException(Throwable cause)
	{
		super(cause);
	}
}
