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   * @author Sven Schauwvliege (Last modified by $Author: ge0ffrey $)
21   * @version $Revision: 1.1 $ - $Date: 2005/08/26 07:58:25 $
22   */
23  
24  /*** 
25   * $Log: LastAdminException.java,v $
26   * Revision 1.1  2005/08/26 07:58:25  ge0ffrey
27   * split up the sources in service, serviceimpl and webclient
28   *
29   * Revision 1.2  2005/06/09 08:18:41  bejug_cc
30   * Fix initial import
31   *
32   * Revision 1.1  2005/06/07 12:13:14  ssc
33   * Delete last admin exception
34   * 
35   **/
36  public class LastAdminException extends JavaCareerException {
37      /***
38       * Default constructor.
39       */
40      public LastAdminException() { 
41          super(); 
42      }
43      
44      /***
45       * Constructor.
46       * @param message String
47       */
48      public LastAdminException(String message) { 
49          super(message); 
50      }
51  }