001// Copyright (c) 2001 Hursh Jain (http://www.mollypages.org) 002// The Molly framework is freely distributable under the terms of an 003// MIT-style license. For details, see the molly pages web site at: 004// http://www.mollypages.org/. Use, modify, have fun ! 005 006package fc.util; 007 008/** 009Exception thrown when a PropertyMgr could not find a required property. 010@see fc.app.PropertyMgr 011**/ 012public class PropertyNotFoundException extends Exception 013{ 014public PropertyNotFoundException(String str) { 015 super(str); 016 } 017 018public PropertyNotFoundException() { 019 super(); 020 } 021} //~class PropertyNotFoundException