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

Last change on this file since 23191 was 23191, checked in by stoecker, 14 years ago

remove tabs

File size: 988 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 /** The Constant serialVersionUID. */
18 private static final long serialVersionUID = 857926026580277816L;
19
20 /**
21 * Default constructor.
22 */
23 public TerracerRuntimeException() {
24 super();
25 }
26
27 /**
28 * @param message
29 * @param cause
30 */
31 public TerracerRuntimeException(String message, Throwable cause) {
32 super(message, cause);
33 }
34
35 /**
36 * @param message
37 */
38 public TerracerRuntimeException(String message) {
39 super(message);
40 }
41
42 /**
43 * @param cause
44 */
45 public TerracerRuntimeException(Throwable cause) {
46 super(cause);
47 }
48
49}
Note: See TracBrowser for help on using the repository browser.