KickJava   Java API By Example, From Geeks To Geeks.

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


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 whenever one attempts to set a property of an unsupported type on a
17  * {@link User}.
18  *
19  * @author Eric Galluzzo
20  */

21 public class UnsupportedPropertyTypeException extends UserManagerException
22 {
23     /**
24      * Constructor for UnsupportedPropertyTypeException.
25      */

26     public UnsupportedPropertyTypeException()
27     {
28         super();
29     }
30
31     /**
32      * Constructor for UnsupportedPropertyTypeException.
33      *
34      * @param message
35      */

36     public UnsupportedPropertyTypeException(String JavaDoc message)
37     {
38         super(message);
39     }
40
41     /**
42      * Constructor for UnsupportedPropertyTypeException.
43      *
44      * @param message
45      * @param cause
46      */

47     public UnsupportedPropertyTypeException(String JavaDoc message, Throwable JavaDoc cause)
48     {
49         super(message, cause);
50     }
51
52     /**
53      * Constructor for UnsupportedPropertyTypeException.
54      *
55      * @param cause
56      */

57     public UnsupportedPropertyTypeException(Throwable JavaDoc cause)
58     {
59         super(cause);
60     }
61 }
62
Popular Tags