package org.geotools.data.geojson; /** * Exception thrown when unable to parse a GeoJSON object * * @author Nicholas Bergson-Shilcock * @version 0.1 */ public class GeoJSONException extends Exception { private static final long serialVersionUID = -5680308877320463906L; public GeoJSONException() { super(); } public GeoJSONException(String msg) { super(msg); } }