1 package org.sapia.validator.config;2 3 import org.sapia.util.CompositeException;4 5 /**6 * Implements an exception that is thrown is an error occurs while loading7 * definitions and/or rulesets.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 ConfigException extends CompositeException {17 /**18 * Constructor for ConfigException.19 * @param arg020 * @param arg121 */22 public ConfigException(String arg0, Throwable arg1) {23 super(arg0, arg1);24 }25 26 /**27 * Constructor for ConfigException.28 * @param arg029 */30 public ConfigException(String arg0) {31 super(arg0);32 }33 }34