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

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

Go to download

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