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

Last change on this file since 9597 was 8378, checked in by Don-vip, 9 years ago

fix copyright/license headers globally

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.projection;
3
4public class ProjectionConfigurationException extends Exception {
5
6 /**
7 * Constructs a new {@code ProjectionConfigurationException}.
8 */
9 public ProjectionConfigurationException() {
10 super();
11 }
12
13 /**
14 * Constructs a new {@code ProjectionConfigurationException}.
15 * @param message the detail message (which is saved for later retrieval
16 * by the {@link #getMessage()} method).
17 * @param cause the cause (which is saved for later retrieval by the
18 * {@link #getCause()} method). (A <tt>null</tt> value is
19 * permitted, and indicates that the cause is nonexistent or unknown.)
20 */
21 public ProjectionConfigurationException(String message, Throwable cause) {
22 super(message, cause);
23 }
24
25 /**
26 * Constructs a new {@code ProjectionConfigurationException}.
27 * @param message the detail message. The detail message is saved for
28 * later retrieval by the {@link #getMessage()} method.
29 */
30 public ProjectionConfigurationException(String message) {
31 super(message);
32 }
33
34 /**
35 * Constructs a new {@code ProjectionConfigurationException}.
36 * @param cause the cause (which is saved for later retrieval by the
37 * {@link #getCause()} method). (A <tt>null</tt> value is
38 * permitted, and indicates that the cause is nonexistent or unknown.)
39 */
40 public ProjectionConfigurationException(Throwable cause) {
41 super(cause);
42 }
43}
Note: See TracBrowser for help on using the repository browser.