
org.sapia.util.xml.confix.ConfigurationException Maven / Gradle / Ivy
The newest version!
package org.sapia.util.xml.confix;
// ---------------------------------
/**
* Thrown when an XML processor could not complete the processing of
* a XML configuration.
*
* @author Jean-Cedric Desrochers
*
*
* - Copyright:
- Copyright © 2002-2003 Sapia Open Source Software. All Rights Reserved.
* - License:
- Read the license.txt file of the jar or visit the
* license page at the Sapia OSS web site
*
*/
public class ConfigurationException extends Exception {
/////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////// CONSTRUCTORS /////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/**
* Creates a new ConfigurationException instance with the arguments passed in.
*
* @param aMessage The message describing the error.
* @param aSourceError The source error to encapsulate.
*/
public ConfigurationException(String aMessage, Throwable aSourceError) {
super(aMessage, aSourceError);
}
/**
* Creates a new ConfigurationException instance with the argument passed in.
*
* @param aMessage The message describing the error.
*/
public ConfigurationException(String aMessage) {
super(aMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy