01: package org.geotools.shapefile;
02:
03: /**
04: * Thrown when an attempt is made to load a shapefile
05: * which contains an error such as an invlaid shape
06: */
07: publicclass InvalidShapefileException extendsShapefileException {
08: public InvalidShapefileException(String s) {
09: super(s);
10: }
11: }