source: osm/applications/editors/josm/plugins/terracer/src/terracer/TerracerRuntimeException.java@ 30612

Last change on this file since 30612 was 30612, checked in by donvip, 11 years ago

[josm_terracer] see #josm10443 - default number of segments to 2 + update project configuration

File size: 875 bytes
Line 
1/**
2 * Terracer: A JOSM Plugin for terraced houses.
3 *
4 * Copyright 2009 CloudMade Ltd.
5 *
6 * Released under the GPLv2, see LICENSE file for details.
7 */
8package terracer;
9
10/**
11 * The Class TerracerRuntimeException indicates errors from the Terracer Plugin.
12 *
13 * @author casualwalker
14 */
15public class TerracerRuntimeException extends RuntimeException {
16
17 /**
18 * Default constructor.
19 */
20 public TerracerRuntimeException() {
21 super();
22 }
23
24 /**
25 * @param message
26 * @param cause
27 */
28 public TerracerRuntimeException(String message, Throwable cause) {
29 super(message, cause);
30 }
31
32 /**
33 * @param message
34 */
35 public TerracerRuntimeException(String message) {
36 super(message);
37 }
38
39 /**
40 * @param cause
41 */
42 public TerracerRuntimeException(Throwable cause) {
43 super(cause);
44 }
45
46}
Note: See TracBrowser for help on using the repository browser.