aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/files/ParserException.java
blob: 6c8cfdaa27b97456c3bf4147897ecb8aaed1806b (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(final String detailMessage) {
        super(detailMessage);
    }

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

}