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