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: OzoneRemoteExc.java,v 1.1 2001/12/18 10:31:30 per_nyfelt Exp $
08:
09: package org.ozoneDB;
10:
11: /**
12: * Base class of all exceptions that may be thrown by ozone API methods.
13: *
14: *
15: * @author <a href="http://www.softwarebuero.de/">SMB</a>
16: * @version $Revision: 1.1 $Date: 2001/12/18 10:31:30 $
17: */
18: public class OzoneRemoteExc extends Exception {
19:
20: public OzoneRemoteExc() {
21: super ();
22: }
23:
24: public OzoneRemoteExc(String s) {
25: super(s);
26: }
27:
28: }
|