<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// INFO: tab width was set to 4 when editing this file

package org.bodington.server.userimport;


/** An exception saying that there is already an import running, and you need to
decide what to do with it.
&lt;p&gt;
&lt;br/&gt;$HeadURL: https://svn.oucs.ox.ac.uk/sysdev/src/u/usrgrpgen/tags/2.0-3/uk/ac/ox/usrgrpgen/AlreadyRunningException.java $
&lt;br/&gt;$LastChangedRevision: 3381 $
&lt;br/&gt;$LastChangedDate: 2004-04-02 16:43:20 +0100 (Fri, 02 Apr 2004) $
&lt;br/&gt;$LastChangedBy: mats $
&lt;/p&gt;
@author	Mats Henrikson
@version $LastChangedRevision: 3381 $
*/
public class AlreadyRunningException extends Exception {


	/** Common error message. */
	private static final String MESSAGE = "There is already an importer "
											+"instance running.";


	/** Initialise the exception. */
	public AlreadyRunningException() {
		super(MESSAGE);
		fillInStackTrace();
	}
}
</pre></body></html>