blob: 5aa152cd1dcc670af0fe0ed28fee747393f243d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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(Throwable throwable) {
super(throwable);
}
public ParserException(String detailMessage, Throwable throwable) {
super(detailMessage, throwable);
}
}
|