/**
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 * http://www.dspace.org/license/
 */
package org.dspace.app.webui.components;

/**
 * General exception to be thrown by code working with recent submissions
 * 
 * @author Richard Jones
 *
 */
public class RecentSubmissionsException extends Exception
{

	public RecentSubmissionsException()
	{
		super();
		// TODO Auto-generated constructor stub
	}

	public RecentSubmissionsException(String message)
	{
		super(message);
		// TODO Auto-generated constructor stub
	}

	public RecentSubmissionsException(String message, Throwable cause)
	{
		super(message, cause);
		// TODO Auto-generated constructor stub
	}

	public RecentSubmissionsException(Throwable cause)
	{
		super(cause);
		// TODO Auto-generated constructor stub
	}

}
