org.osgeo.proj4j.Proj4jException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geotrellis-proj4_2.11 Show documentation
Show all versions of geotrellis-proj4_2.11 Show documentation
GeoTrellis is an open source geographic data processing engine for high performance applications.
package org.osgeo.proj4j;
/**
* Signals that a situation or data state has been encountered
* which prevents computation from proceeding,
* or which would lead to erroneous results.
*
* This is the base class for all exceptions
* thrown in the Proj4J API.
*
* @author mbdavis
*
*/
public class Proj4jException extends RuntimeException
{
public Proj4jException() {
super();
}
public Proj4jException(String message) {
super(message);
}
}