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 006 package fc.util; 007 008 /** 009 Exception thrown when a PropertyMgr could not find a required property. 010 @see fc.app.PropertyMgr 011 **/ 012 public class PropertyNotFoundException extends Exception 013 { 014 public PropertyNotFoundException(String str) { 015 super(str); 016 } 017 018 public PropertyNotFoundException() { 019 super(); 020 } 021 } //~class PropertyNotFoundException