
org.geolatte.mapserver.referencing.ReferencingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geolatte-mapserver Show documentation
Show all versions of geolatte-mapserver Show documentation
An embeddable map server supporting the WMS, WMTS and TMS protocols
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