KickJava   Java API By Example, From Geeks To Geeks.

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


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 import com.openedit.OpenEditRuntimeException;
16
17 /**
18  * This exception is thrown from {@link UserManager}.
19  *
20  * @author Eric and Matt
21  */

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