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 Duchesne10 * <dl>11 * <dt><b>Copyright:</b><dd>Copyright © 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 the13 * <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 arg020 * @param arg121 */22 public ConfigurationException(String arg0, Throwable arg1) {23 super(arg0, arg1);24 }25 26 /**27 * Constructor for ConfigurationException.28 * @param arg029 */30 public ConfigurationException(String arg0) {31 super(arg0);32 }33 }34