01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2003-2006, GeoTools Project Managment Committee (PMC)
05: * (C) 2002, Centre for Computational Geography
06: *
07: * This library is free software; you can redistribute it and/or
08: * modify it under the terms of the GNU Lesser General Public
09: * License as published by the Free Software Foundation;
10: * version 2.1 of the License.
11: *
12: * This library is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: */
17: package org.geotools.index;
18:
19: /**
20: * DOCUMENT ME!
21: *
22: * @author Tommaso Nolli
23: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/plugin/shapefile/src/main/java/org/geotools/index/LockTimeoutException.java $
24: */
25: public class LockTimeoutException extends Exception {
26: /**
27: *
28: */
29: public LockTimeoutException() {
30: super ();
31: }
32:
33: /**
34: * DOCUMENT ME!
35: *
36: * @param message
37: */
38: public LockTimeoutException(String message) {
39: super (message);
40: }
41:
42: /**
43: * DOCUMENT ME!
44: *
45: * @param message
46: * @param cause
47: */
48: public LockTimeoutException(String message, Throwable cause) {
49: super (message, cause);
50: }
51:
52: /**
53: * DOCUMENT ME!
54: *
55: * @param cause
56: */
57: public LockTimeoutException(Throwable cause) {
58: super(cause);
59: }
60: }
|