001 //License: GPL. For details, see LICENSE file.
002 package org.openstreetmap.josm.data.projection;
003
004 public class ProjectionConfigurationException extends Exception {
005
006 public ProjectionConfigurationException() {
007 super();
008 }
009
010 public ProjectionConfigurationException(String message, Throwable cause) {
011 super(message, cause);
012 }
013
014 public ProjectionConfigurationException(String message) {
015 super(message);
016 }
017
018 public ProjectionConfigurationException(Throwable cause) {
019 super(cause);
020 }
021
022 }