01: // NoSuchPropertyException.java
02: // $Id: NoSuchPropertyException.java,v 1.1 2000/09/22 14:20:02 bmahe Exp $
03: // (c) COPYRIGHT MIT, INRIA and Keio, 2000.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05: package org.w3c.www.webdav.xml;
06:
07: /**
08: * @version $Revision: 1.1 $
09: * @author Benoît Mahé (bmahe@w3.org)
10: */
11: public class NoSuchPropertyException extends Exception {
12:
13: public NoSuchPropertyException(String property) {
14: super(property);
15: }
16:
17: }
|