// License: GPL. For details, see LICENSE file. package org.openstreetmap.josm.plugins.opendata.core.io.geographic; public class GeoMathTransformException extends Exception { public GeoMathTransformException() { super(); } public GeoMathTransformException(String message, Throwable cause) { super(message, cause); } public GeoMathTransformException(String message) { super(message); } public GeoMathTransformException(Throwable cause) { super(cause); } }