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

org.geolatte.geom.crs.UnsupportedCoordinateReferenceSystem Maven / Gradle / Ivy

Go to download

This geoLatte-geom library offers a geometry model that conforms to the OGC Simple Features for SQL specification.

The newest version!
package org.geolatte.geom.crs;

/**
 * Created by Karel Maesen, Geovise BVBA on 2019-03-24.
 */
public class UnsupportedCoordinateReferenceSystem extends RuntimeException {

    public UnsupportedCoordinateReferenceSystem(CrsId crsId) {
        super(String.format("CRS %s is not supported", crsId));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy