/* * Created on 10.02.2006 * */ package org.dresdenocl.tools.template.exception; /** * The TemplateException is thrown, when an error occurs while working with code * templates. * * @author Christian Wende * */ public class TemplateException extends Exception { private static final long serialVersionUID = -8685049696077267648L; /** * The standard constructor for a TemplateException. * * @param message * A helpful explanation why the Exception was thrown. */ public TemplateException(String message) { super(message); } }