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

Last change on this file since 9992 was 9981, checked in by Don-vip, 8 years ago

fix some unused code warnings

  • Property svn:eol-style set to native
File size: 1.4 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 * @param message the detail message (which is saved for later retrieval
9 * by the {@link #getMessage()} method).
10 * @param cause the cause (which is saved for later retrieval by the
11 * {@link #getCause()} method). (A <tt>null</tt> value is
12 * permitted, and indicates that the cause is nonexistent or unknown.)
13 */
14 public ProjectionConfigurationException(String message, Throwable cause) {
15 super(message, cause);
16 }
17
18 /**
19 * Constructs a new {@code ProjectionConfigurationException}.
20 * @param message the detail message. The detail message is saved for
21 * later retrieval by the {@link #getMessage()} method.
22 */
23 public ProjectionConfigurationException(String message) {
24 super(message);
25 }
26
27 /**
28 * Constructs a new {@code ProjectionConfigurationException}.
29 * @param cause the cause (which is saved for later retrieval by the
30 * {@link #getCause()} method). (A <tt>null</tt> value is
31 * permitted, and indicates that the cause is nonexistent or unknown.)
32 */
33 public ProjectionConfigurationException(Throwable cause) {
34 super(cause);
35 }
36}
Note: See TracBrowser for help on using the repository browser.