/**
 * 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.search;

public class SearchProcessorException extends Exception
{

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

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

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

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