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