1 package com.ibm.webdav; 2 3 /* 4 * (C) Copyright IBM Corp. 2000 All rights reserved. 5 * 6 * The program is provided "AS IS" without any warranty express or 7 * implied, including the warranty of non-infringement and the implied 8 * warranties of merchantibility and fitness for a particular purpose. 9 * 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 * InvalidPropertyNameException constructor comment. 31 * @param statusMessage a message describing the exception of status code 32 */ 33 public InvalidPropertyNameException(String s) { 34 super(s); 35 } 36 } 37