
org.sapia.util.text.TemplateException Maven / Gradle / Ivy
The newest version!
package org.sapia.util.text;
// Import of Sapia's utility classes
// ---------------------------------
import org.sapia.util.CompositeException;
/**
* Thrown when some exception occurs when processing data to render.
*
* @author JC 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 TemplateException extends CompositeException {
/**
* Creates a new TemplateException instance with the arguments passed in.
*
* @param aMessage The message describing the error.
* @param aSourceError The source error to encapsulate.
*/
public TemplateException(String aMessage, Throwable aSourceError) {
super(aMessage, aSourceError);
}
/**
* Creates a new TemplateException instance with the argument passed in.
*
* @param aMessage The message describing the error.
*/
public TemplateException(String aMessage) {
super(aMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy