<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * This exception is thrown when a client attempts to log into a server with
 * a username which is already connected to the server.  The server will
 * allow a particular username to log in only once at any point in time.
 *
 * @author	Thor Denmark
 * @version	$Revision: 1.3 $	$Date: 1998/05/04 00:06:30 $
 *
 * @exception	DupUserException
 *
 * @see		RuntimeException
 */
class DupUserException extends RuntimeException
{
  /**
   * Creates a DupUserException.
   *
   */
  public DupUserException() { super(); }

  /**
   * Creates a DupUserException with a descriptive string.
   *
   */
  public DupUserException(String s) { super(s); }
}
</pre></body></html>