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

Last change on this file since 33077 was 33077, checked in by donvip, 8 years ago

checkstyle

File size: 668 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package terracer;
3
4/**
5 * The Class TerracerRuntimeException indicates errors from the Terracer Plugin.
6 *
7 * @author casualwalker - Copyright 2009 CloudMade Ltd
8 */
9public class TerracerRuntimeException extends RuntimeException {
10
11 /**
12 * Default constructor.
13 */
14 public TerracerRuntimeException() {
15 super();
16 }
17
18 public TerracerRuntimeException(String message, Throwable cause) {
19 super(message, cause);
20 }
21
22 public TerracerRuntimeException(String message) {
23 super(message);
24 }
25
26 public TerracerRuntimeException(Throwable cause) {
27 super(cause);
28 }
29
30}
Note: See TracBrowser for help on using the repository browser.