
org.sapia.util.xml.ProcessingException Maven / Gradle / Ivy
The newest version!
package org.sapia.util.xml;
import org.sapia.util.CompositeException;
/**
* This exception is thrown by a ConfixProcessorIF
when the latter
* cannot process a given XML configuration or by the IdefixProcessorIF
* when it cannot process an object.
*
* @see org.sapia.util.xml.confix.ConfixProcessorIF
* @see org.sapia.util.xml.idefix.IdefixProcessorIF
* @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 ProcessingException extends Exception {
/////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////// CONSTRUCTORS /////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/**
* Creates a new ProcessingException instance with the arguments passed in.
*
* @param aMessage The message describing the error.
* @param aSourceError The source error to encapsulate.
*/
public ProcessingException(String aMessage, Throwable aSourceError) {
super(aMessage, aSourceError);
}
/**
* Creates a new ProcessingException instance with the argument passed in.
*
* @param aMessage The message describing the error.
*/
public ProcessingException(String aMessage) {
super(aMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy