KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > soto > ConfigurationException


1 package org.sapia.soto;
2
3 import org.sapia.util.CompositeException;
4
5
6 /**
7  * Thrown is the case of misconfiguration.
8  *
9  * @author Yanick Duchesne
10  * <dl>
11  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2003 <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 ConfigurationException extends CompositeException {
17   /**
18    * Constructor for ConfigurationException.
19    * @param arg0
20    * @param arg1
21    */

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

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