01: // DAVPropertyException.java
02: // $Id: DAVPropertyException.java,v 1.1 2000/10/05 16:18:53 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.jigsaw.webdav;
06:
07: /**
08: * @version $Revision: 1.1 $
09: * @author Benoît Mahé (bmahe@w3.org)
10: */
11: public class DAVPropertyException extends Exception {
12:
13: private Object reason = null;
14:
15: public Object getReason() {
16: return reason;
17: }
18:
19: public DAVPropertyException(String msg, Object reason) {
20: super(msg);
21: this.reason = reason;
22: }
23:
24: }
|