KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > DeadlockException


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: DeadlockException.java,v 1.1 2002/09/11 23:11:19 mediumnet Exp $
8

9 package org.ozoneDB;
10
11
12 /**
13  * This exception is thrown in the client, if the current transaction was
14  * aborted because of a deadlock in the server. This exception appears only, if
15  * explicite transactions are used in the client.<p>
16  *
17  * Note: Since a deadlock may occur at any place in the code this exception
18  * is a {@link RuntimeException} instead of an {@link OzoneRemoteException}.
19  *
20  *
21  * @author <a HREF="http://www.softwarebuero.de/">SMB</a>
22  * @version $Revision: 1.1 $Date: 2002/09/11 23:11:19 $
23  */

24 public class DeadlockException extends RuntimeException JavaDoc {
25     
26     
27     public DeadlockException() {
28     }
29     
30     
31     public DeadlockException( String JavaDoc s ) {
32         super( s );
33     }
34     
35 }
36
Popular Tags