1 package org.ocltf.templateengine;
2
3 /***
4 * Any unchecked exception that will be thrown when
5 * any processing by a TemplateEngine occurs..
6 */
7 public class TemplateEngineException extends RuntimeException {
8
9 /***
10 * Constructs an instance of TemplateEngineException.
11 *
12 * @param th
13 */
14 public TemplateEngineException(Throwable th){
15 super(th);
16 }
17
18 /***
19 * Constructs an instance of TemplateEngineException.
20 *
21 * @param msg
22 */
23 public TemplateEngineException(String msg) {
24 super(msg);
25 }
26
27 /***
28 * Constructs an instance of TemplateEngineException.
29 *
30 * @param msg
31 * @param th
32 */
33 public TemplateEngineException(String msg, Throwable th) {
34 super(msg, th);
35 }
36
37 }