1   // joi/8/juno/BadPasswordException.java
2   //
3   //
4   //  Copyright 2003 Bill Campbell and Ethan Bolker
5   
6   /** 
7    * The exception thrown when an initial password is unacceptable
8    * or a match against an existing password fails.
9    */
10  
11  public class BadPasswordException extends Exception 
12  {
13      BadPasswordException()
14      {
15          super();
16      }
17  
18      BadPasswordException(String message)
19      {
20          super(message);
21      }
22  }
23