org.maptalks.geojson.common.exceptions.InvalidCRSException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geojson4j Show documentation
Show all versions of geojson4j Show documentation
GeoJSON Serilization and mutual conversion with JSON .
The newest version!
package org.maptalks.geojson.common.exceptions;
public class InvalidCRSException extends RuntimeException {
public InvalidCRSException(Throwable e) {
super(e);
}
public InvalidCRSException() {
super();
}
public InvalidCRSException(String msg) {
super(msg);
}
public InvalidCRSException(String msg, Throwable e) {
super(msg,e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy