01: package org.apache.ojb.otm.lock.wait;
02:
03: /* Copyright 2003-2005 The Apache Software Foundation
04: *
05: * Licensed under the Apache License, Version 2.0 (the "License");
06: * you may not use this file except in compliance with the License.
07: * You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: import org.apache.ojb.otm.lock.LockingException;
19:
20: /**
21: *
22: * <javadoc>
23: *
24: * @author <a href="mailto:rraghuram@hotmail.com">Raghu Rajah</a>
25: *
26: */
27: public class DeadlockException extends LockingException {
28:
29: /**
30: * Constructor for DeadlockException.
31: */
32: public DeadlockException() {
33: super ();
34: }
35:
36: /**
37: * Constructor for DeadlockException.
38: * @param message
39: */
40: public DeadlockException(String message) {
41: super (message);
42: }
43:
44: /**
45: * Constructor for DeadlockException.
46: * @param exception
47: */
48: public DeadlockException(Throwable exception) {
49: super (exception);
50: }
51:
52: /**
53: * Constructor for DeadlockException.
54: * @param message
55: * @param exception
56: */
57: public DeadlockException(String message, Throwable exception) {
58: super(message, exception);
59: }
60:
61: }
|