01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: UserManagerExc.java,v 1.1 2001/12/18 10:31:30 per_nyfelt Exp $
08:
09: package org.ozoneDB.core;
10:
11: import org.ozoneDB.*;
12:
13: /**
14: * Thrown by the UserManager in case of an error. This exception is used by the
15: * admin tools only. Since it is not part of the general API it does not
16: * extend {@link OzoneRemoteExc} and is part of the core package.
17: *
18: *
19: * @author <a href="http://www.softwarebuero.de/">SMB</a>
20: * @version $Revision: 1.1 $Date: 2001/12/18 10:31:30 $
21: */
22: public class UserManagerExc extends Exception {
23:
24: public UserManagerExc() {
25: super ();
26: }
27:
28: public UserManagerExc(String s) {
29: super(s);
30: }
31:
32: }
|