org.geolatte.geom.codec.UnsupportedCoordinateSystemException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geolatte-geom Show documentation
Show all versions of geolatte-geom Show documentation
This geoLatte-geom library offers a geometry model that conforms to the OGC Simple Features for SQL
specification.
package org.geolatte.geom.codec;
/**
* An exception for coordinate systems (as defined by their axes) that are not compatible with a given {@code
* CoordinateReferenceSystem}.
*
* Created by Karel Maesen, Geovise BVBA on 28/11/14.
*/
public class UnsupportedCoordinateSystemException extends RuntimeException {
public UnsupportedCoordinateSystemException() {
super();
}
public UnsupportedCoordinateSystemException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy