// PendingCurationException.java
//
//    senger@ebi.ac.uk
//    February 2003

package org.biomoby.shared;

/** 
 * A specific exception indicating that a request should not be
 * fulfilled because registration or deregistration of an entity
 * was not yet successful - but may be later.
 *<p>
 * @author <A HREF="mailto:senger@ebi.ac.uk">Martin Senger</A>
 * @version $Id: PendingCurationException.java,v 1.3 2006/07/07 04:12:40 gordonp Exp $
 */

public class PendingCurationException extends Exception {


    private static final long serialVersionUID = 3256438114472769333L;

    /** @serial
     */
    public PendingCurationException() {
	super();
    }
}
