01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2002-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; either
10: * version 2.1 of the License, or (at your option) any later version.
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.data.shapefile.shp;
18:
19: import org.geotools.data.DataSourceException;
20:
21: /**
22: * Thrown when an error relating to the shapefile
23: * occures
24: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/plugin/shapefile/src/main/java/org/geotools/data/shapefile/shp/ShapefileException.java $
25: */
26: public class ShapefileException extends DataSourceException {
27:
28: private static final long serialVersionUID = -6523799964553991364L;
29:
30: public ShapefileException(String s) {
31: super (s);
32: }
33:
34: public ShapefileException(String s, Throwable cause) {
35: super(s, cause);
36: }
37: }
|