aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/files/ParserException.java
blob: c0076cc36bc0a529b89c1bc722617f0e94b8d5eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cgeo.geocaching.files;

/**
 * Exception indicating that a FileParser (GPX or LOC) could not parse the file due to bad file format.
 */
public class ParserException extends Exception {
    private static final long serialVersionUID = 1L;

    public ParserException() {
    }

    public ParserException(String detailMessage) {
        super(detailMessage);
    }

    public ParserException(String detailMessage, Throwable throwable) {
        super(detailMessage, throwable);
    }

}