KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > users > InvalidPropertyNameException


1 /*
2 Copyright (c) 2003 eInnovation Inc. All rights reserved
3
4 This library is free software; you can redistribute it and/or modify it under the terms
5 of the GNU Lesser General Public License as published by the Free Software Foundation;
6 either version 2.1 of the License, or (at your option) any later version.
7
8 This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
9 without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10 See the GNU Lesser General Public License for more details.
11 */

12
13 package com.openedit.users;
14
15 /**
16  * This exception is thrown when an attempt is made to add a property to a user using an invalid
17  * property name.
18  *
19  * @author Eric Galluzzo
20  *
21  * @see User#put(String, Object)
22  */

23 public class InvalidPropertyNameException extends UserManagerException
24 {
25     public InvalidPropertyNameException()
26     {
27         super();
28     }
29
30     public InvalidPropertyNameException(String JavaDoc message)
31     {
32         super(message);
33     }
34
35     public InvalidPropertyNameException(String JavaDoc message, Throwable JavaDoc cause)
36     {
37         super(message, cause);
38     }
39
40     public InvalidPropertyNameException(Throwable JavaDoc cause)
41     {
42         super(cause);
43     }
44 }
45
Popular Tags