WordNetException.java
01 package gate.wordnet;
02 
03 import gate.util.GateException;
04 
05 /**
06  * Title:        Gate2
07  * Description:
08  * Copyright:    Copyright (c) 2000
09  * Company:      University Of Sheffield
10  */
11 
12 public class WordNetException extends GateException {
13 
14   public WordNetException() {
15     super();
16   }
17 
18   public WordNetException(String s) {
19     super(s);
20   }
21 
22   public WordNetException(Throwable e) {
23     super(e);
24   }
25 
26 }