KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > soto > state > ModuleReloadRuntimeException


1 package org.sapia.soto.state;
2
3 import org.sapia.util.CompositeRuntimeException;
4
5 /**
6  * Thrown when a module could not be reloaded.
7  *
8  * @author Yanick Duchesne
9  *
10  * <dl>
11  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2004 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>
12  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
13  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
14  * </dl>
15  */

16 public class ModuleReloadRuntimeException extends CompositeRuntimeException{
17     
18   /**
19    * @param arg0
20    * @param arg1
21    */

22   public ModuleReloadRuntimeException(String JavaDoc arg0, Throwable JavaDoc arg1) {
23     super(arg0, arg1);
24   }
25
26   /**
27    * @param arg0
28    */

29   public ModuleReloadRuntimeException(String JavaDoc arg0) {
30     super(arg0);
31   }
32
33 }
34
Popular Tags