All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.osgeo.proj4j.Proj4jException Maven / Gradle / Ivy

Go to download

GeoTrellis is an open source geographic data processing engine for high performance applications.

There is a newer version: 0.10.3
Show newest version
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); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy