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
485 B
21 lines
485 B
package de.anomic.data.wiki;
|
|
|
|
public class wikiParserException extends Exception {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public wikiParserException() { }
|
|
|
|
public wikiParserException(final String message) {
|
|
super(message);
|
|
}
|
|
|
|
public wikiParserException(final Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
public wikiParserException(final String message, final Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|