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

org.geolatte.mapserver.referencing.ReferencingException Maven / Gradle / Ivy

The newest version!
package org.geolatte.mapserver.referencing;

import org.opengis.referencing.operation.NoninvertibleTransformException;

/**
 *
 * @author Karel Maesen, Geovise BVBA
 *         creation-date: 7/1/11
 */
public class ReferencingException extends Exception {

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

    public ReferencingException(Exception e) {
        super(e);
    }

    public ReferencingException(String msg, Exception e) {
        super(msg,e);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy