01: package org.geotools.shapefile; 02: 03: /** 04: * Thrown when an error relating to the shapefile 05: * occures 06: */ 07: public class ShapefileException extends Exception { 08: public ShapefileException() { 09: super (); 10: } 11: 12: public ShapefileException(String s) { 13: super(s); 14: } 15: }