1 18 19 package org.objectweb.kilim.repository; 20 21 26 public class TemplateNotFoundException extends Exception { 27 28 31 public TemplateNotFoundException(String aTemplateName) { 32 templateName = aTemplateName; 33 } 34 35 39 public String getTemplateName() { 40 return templateName; 41 } 42 43 46 public String toString() { 47 return "TemplateNotFoundException[" + templateName + "]"; 48 } 49 50 private String templateName; 51 } 52 | Popular Tags |