/** * Exceptions that are thrown when you can't login. * * @author Samuel A. Rebelsky * @version 1.0 of October 1999 */ public class LoginException extends Exception { /** No, you can't log in to the system. **/ public LoginException() { super(); } // LoginException() /** You can't log in because .... */ public LoginException(String reason) { super(reason); } // LoginException(String) } // class LoginException