View Javadoc

1   /***
2   Copyright (C) 2005 The Java Community
3   
4   This program is free software; you can redistribute it and/or modify  it under
5   the terms of the GNU General Public License as published by  the Free Software
6   Foundation; either version 2 of the License, or  (at your option) any later
7   version.
8   
9   This program is distributed in the hope that it will be useful,  but WITHOUT
10  ANY WARRANTY; without even the implied warranty of  MERCHANTABILITY or FITNESS
11  FOR A PARTICULAR PURPOSE. See the  GNU General Public License for more details.
12  
13  You should have received a copy of the GNU General Public License  along with
14  this program; if not, write to the Free Software  Foundation, Inc., 59 Temple
15  Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17  package org.bejug.javacareers.common.exception;
18  
19  
20  /***
21   *
22   * @author Sven Schauwvliege (Last modified by $Author: ge0ffrey $)
23   * @version $Revision: 1.1 $ - $Date: 2005/08/26 07:58:25 $
24   */
25  public class DuplicateUserNameException extends JavaCareerException {
26  
27      /***
28       * Default constructor.
29       */
30      public DuplicateUserNameException() { 
31          super(); 
32      }
33      
34      /***
35       * Constructor.
36       * @param message String
37       */
38      public DuplicateUserNameException(String message) { 
39          super(message); 
40      }
41  }
42  
43  /*** 
44   * $Log: DuplicateUserNameException.java,v $
45   * Revision 1.1  2005/08/26 07:58:25  ge0ffrey
46   * split up the sources in service, serviceimpl and webclient
47   *
48   * Revision 1.2  2005/06/09 08:18:41  bejug_cc
49   * Fix initial import
50   *
51   * Revision 1.1  2005/05/11 16:40:58  sja
52   * Moved to org.bejug.javacareers.common.exception package.
53   *
54   * Revision 1.1  2005/05/09 12:31:29  ssc
55   * Added duplicate username exception
56   * 
57   **/