You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
468 B
21 lines
468 B
package de.anomic.data.wiki;
|
|
|
|
public class WikiParserException extends RuntimeException {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public WikiParserException() { }
|
|
|
|
public WikiParserException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public WikiParserException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
public WikiParserException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|