
org.osgeo.proj4j.ConvergenceFailureException 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.
The newest version!
package org.osgeo.proj4j;
/**
* Signals that an interative mathematical algorithm has failed to converge.
* This is usually due to values exceeding the
* allowable bounds for the computation in which they are being used.
*
* @author mbdavis
*
*/
public class ConvergenceFailureException extends Proj4jException
{
public ConvergenceFailureException() {
super();
}
public ConvergenceFailureException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy