aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/files/ParserException.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/files/ParserException.java')
-rw-r--r--main/src/cgeo/geocaching/files/ParserException.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/files/ParserException.java b/main/src/cgeo/geocaching/files/ParserException.java
index c0076cc..6c8cfda 100644
--- a/main/src/cgeo/geocaching/files/ParserException.java
+++ b/main/src/cgeo/geocaching/files/ParserException.java
@@ -9,11 +9,11 @@ public class ParserException extends Exception {
public ParserException() {
}
- public ParserException(String detailMessage) {
+ public ParserException(final String detailMessage) {
super(detailMessage);
}
- public ParserException(String detailMessage, Throwable throwable) {
+ public ParserException(final String detailMessage, final Throwable throwable) {
super(detailMessage, throwable);
}