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: PermissionDeniedExc.java,v 1.1 2001/12/18 10:31:30 per_nyfelt Exp $
08:
09: package org.ozoneDB;
10:
11: /**
12: * This exception is thrown, if the owner of a transaction does not have
13: * proper permissions for a requested operation.
14: *
15: *
16: * @author <a href="http://www.softwarebuero.de/">SMB</a>
17: * @version $Revision: 1.1 $Date: 2001/12/18 10:31:30 $
18: */
19: public class PermissionDeniedExc extends OzoneRemoteExc {
20:
21: public PermissionDeniedExc() {
22: super ();
23: }
24:
25: public PermissionDeniedExc(String s) {
26: super(s);
27: }
28: }
|