01: /*
02: Copyright (c) 2003 eInnovation Inc. All rights reserved
03:
04: This library is free software; you can redistribute it and/or modify it under the terms
05: of the GNU Lesser General Public License as published by the Free Software Foundation;
06: either version 2.1 of the License, or (at your option) any later version.
07:
08: This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
09: 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: public UserManagerException() {
24: super ();
25: }
26:
27: public UserManagerException(String message) {
28: super (message);
29: }
30:
31: public UserManagerException(String message, Throwable cause) {
32: super (message, cause);
33: }
34:
35: public UserManagerException(Throwable cause) {
36: super(cause);
37: }
38: }
|