KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hero > user > ImmutableException


1 /*
2  * Created on 28 avr. 2004
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Generation - Code and Comments
6  */

7 package hero.user;
8
9 /**
10  * @author charoy
11  * 28 avr. 2004 - ImmutableException.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 ImmutableException extends Exception JavaDoc {
27     public ImmutableException(String JavaDoc message) {
28         super(message);
29     }
30 }
31
Popular Tags