| Line | |
|---|
| 1 | // License: GPL. For details, see LICENSE file.
|
|---|
| 2 | package terracer;
|
|---|
| 3 |
|
|---|
| 4 | /**
|
|---|
| 5 | * The Class TerracerRuntimeException indicates errors from the Terracer Plugin.
|
|---|
| 6 | *
|
|---|
| 7 | * @author casualwalker - Copyright 2009 CloudMade Ltd
|
|---|
| 8 | */
|
|---|
| 9 | public 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.