1 package org.astrogrid.security;
2
3 /***
4 * An exception thrown when an account name is rejected by an
5 * authenticating agent.
6 *
7 * @author Guy Rixon
8 */
9 public class InvalidAccountException extends SecurityException {
10
11 public InvalidAccountException (String message) {
12 super(message);
13 }
14
15 public InvalidAccountException (String message, Throwable t) {
16 super(message, t);
17 }
18
19 }