01: package com.ibm.webdav;
02:
03: /*
04: * (C) Copyright IBM Corp. 2000 All rights reserved.
05: *
06: * The program is provided "AS IS" without any warranty express or
07: * implied, including the warranty of non-infringement and the implied
08: * warranties of merchantibility and fitness for a particular purpose.
09: * IBM will not be liable for any damages suffered by you as a result
10: * of using the Program. In no event will IBM be liable for any
11: * special, indirect or consequential damages or lost profits even if
12: * IBM has been advised of the possibility of their occurrence. IBM
13: * will not be liable for any third party claims against you.
14: */
15:
16: /** When thrown, this class signals that the property name
17: * string provided was not legal based on the definition
18: * provided in the documentation of the PropertyName(String)
19: * constructor.
20: * @author Jason Crawford <ccjason@us.ibm.com>
21: */
22: public class InvalidPropertyNameException extends Exception {
23: /**
24: * Construct an InvalidPropertyNameException object.
25: */
26: public InvalidPropertyNameException() {
27: super ("InvalidPropertyName");
28: }
29:
30: /**
31: * InvalidPropertyNameException constructor comment.
32: * @param statusMessage a message describing the exception of status code
33: */
34: public InvalidPropertyNameException(String s) {
35: super(s);
36: }
37: }
|