1 5 package xdoclet.template; 6 7 12 public class TemplateException extends Exception  13 { 14 private Exception nestedException = null; 15 16 21 public TemplateException(String msg) 22 { 23 this(null, msg); 24 } 25 26 32 public TemplateException(Exception nestedException, String msg) 33 { 34 super(msg); 35 this.nestedException = nestedException; 36 } 37 38 43 public Exception getNestedException() 44 { 45 return nestedException; 46 } 47 } 48 | Popular Tags |