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

org.maptalks.geojson.common.exceptions.InvalidCRSException Maven / Gradle / Ivy

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