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