source: josm/trunk/src/org/openstreetmap/josm/data/projection/ProjectionConfigurationException.java@ 8374

Last change on this file since 8374 was 5066, checked in by bastiK, 12 years ago

Proj parameter refactoring (see #7495)

  • Property svn:eol-style set to native
File size: 539 bytes
Line 
1//License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.projection;
3
4public class ProjectionConfigurationException extends Exception {
5
6 public ProjectionConfigurationException() {
7 super();
8 }
9
10 public ProjectionConfigurationException(String message, Throwable cause) {
11 super(message, cause);
12 }
13
14 public ProjectionConfigurationException(String message) {
15 super(message);
16 }
17
18 public ProjectionConfigurationException(Throwable cause) {
19 super(cause);
20 }
21
22}
Note: See TracBrowser for help on using the repository browser.