1 package org.varienaja.util.wikipedia;
2
3 /**
4 * Exception to throw for Exceptional happenings while accessing Wikipedia.
5 * @author Varienaja
6 */
7 public class WikipediaException extends Exception {
8
9 private static final long serialVersionUID = 200902011338L;
10
11 public WikipediaException(String cause) {
12 super(cause);
13 }
14
15 public WikipediaException(String cause, Exception e) {
16 super(cause, e);
17 }
18
19 }