1 package webman.stager;2 3 public class PropertyNotFoundException extends Exception 4 {5 String prop;6 7 public PropertyNotFoundException(String key)8 {9 prop = key;10 }11 12 public String getMessage()13 {14 return "property " + prop + " not found.";15 }16 } 17