01: package webman.stager; 02: 03: public class PropertyNotFoundException extends Exception { 04: String prop; 05: 06: public PropertyNotFoundException(String key) { 07: prop = key; 08: } 09: 10: public String getMessage() { 11: return "property " + prop + " not found."; 12: } 13: }