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

org.geolatte.geom.codec.support.DecodeException 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.codec.support;

public class DecodeException extends RuntimeException {

    public DecodeException(String msg) {
        super(msg);
    }

    public DecodeException(String msg, Throwable t) {
        super(msg, t);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy