01: /*
02: * Created on 28 avr. 2004
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Generation - Code and Comments
06: */
07: package hero.user;
08:
09: /**
10: * @author charoy
11: * 28 avr. 2004 - UserBaseException.java
12: * This program is free software; you can redistribute it and/or
13: * modify it under the terms of the GNU Lesser General Public License
14: * as published by the Free Software Foundation; either version 2
15: * of the License, or (at your option) any later version.
16: *
17: * This program is distributed in the hope that it will be useful,
18: * but WITHOUT ANY WARRANTY; without even the implied warranty of
19: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20: * GNU Lesser General Public License for more details.
21: *
22: * You should have received a copy of the GNU Lesser General Public License
23: * along with this program; if not, write to the Free Software
24: * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25: */
26: public class UserBaseException extends Exception {
27: public UserBaseException(String message) {
28: super(message);
29: }
30: }
|