KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > PermissionDeniedException


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: PermissionDeniedException.java,v 1.2 2002/10/13 11:18:07 per_nyfelt Exp $
8

9 package org.ozoneDB;
10
11
12 /**
13  * This exception is thrown, if the owner of a transaction does not have
14  * proper permissions for a requested operation.
15  *
16  *
17  * @author <a HREF="http://www.softwarebuero.de/">SMB</a>
18  * @version $Revision: 1.2 $Date: 2002/10/13 11:18:07 $
19  */

20 public class PermissionDeniedException extends OzoneRemoteException {
21     
22     
23     public PermissionDeniedException() {
24         super();
25     }
26     
27     
28     public PermissionDeniedException( String JavaDoc message ) {
29         super( message );
30     }
31
32     public PermissionDeniedException(String JavaDoc message, Throwable JavaDoc cause) {
33         super(message, cause);
34     }
35
36     public PermissionDeniedException(Throwable JavaDoc cause) {
37         super(cause);
38     }
39 }
40
Popular Tags