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