/**
 *Exception class for a login procedure
 *
 *@author Dan Hawando
 *@author Josh Vickery
 *@author Ben Kaiser
 *@version 1.0 of Octobre 1999
 */
  
public class LoginException
 extends Exception
{
 public LoginException(String passwd)
    {
       super(passwd);
    }//LoginException(string, string)
}//LoginException

