KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > util > xml > confix > ConfigurationException


1 package org.sapia.util.xml.confix;
2
3
4 // Import of Sapia's utility classes
5
// ---------------------------------
6
import org.sapia.util.CompositeException;
7
8
9 /**
10  * Thrown when an XML processor could not complete the processing of
11  * a XML configuration.
12  *
13  * @author Jean-Cedric Desrochers
14  *
15  * <dl>
16  * <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>
17  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
18  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
19  * </dl>
20  */

21 public class ConfigurationException extends CompositeException {
22   /////////////////////////////////////////////////////////////////////////////////////////
23
//////////////////////////////////// CONSTRUCTORS /////////////////////////////////////
24
/////////////////////////////////////////////////////////////////////////////////////////
25

26   /**
27    * Creates a new ConfigurationException instance with the arguments passed in.
28    *
29    * @param aMessage The message describing the error.
30    * @param aSourceError The source error to encapsulate.
31    */

32   public ConfigurationException(String JavaDoc aMessage, Throwable JavaDoc aSourceError) {
33     super(aMessage, aSourceError);
34   }
35
36   /**
37    * Creates a new ConfigurationException instance with the argument passed in.
38    *
39    * @param aMessage The message describing the error.
40    */

41   public ConfigurationException(String JavaDoc aMessage) {
42     super(aMessage);
43   }
44 }
45
Popular Tags