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: DeadlockExc.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 in the client, if the current transaction was
13: * aborted because of a deadlock in the server. This exception appears only, if
14: * explicite transactions are used in the client.<p>
15: *
16: * Note: Since a deadlock may occur at any place in the code this exception
17: * is a {@link RuntimeException} instead of an {@link OzoneRemoteExc}.
18: *
19: *
20: * @author <a href="http://www.softwarebuero.de/">SMB</a>
21: * @version $Revision: 1.1 $Date: 2001/12/18 10:31:30 $
22: */
23: public class DeadlockExc extends RuntimeException {
24:
25: public DeadlockExc() {
26: }
27:
28: public DeadlockExc(String s) {
29: super(s);
30: }
31:
32: }
|