|
WordNetException |
|
1 package gate.wordnet; 2 3 import gate.util.GateException; 4 5 /** 6 * Title: Gate2 7 * Description: 8 * Copyright: Copyright (c) 2000 9 * Company: University Of Sheffield 10 * @author 11 * @version 1.0 12 */ 13 14 public class WordNetException extends GateException { 15 16 public WordNetException() { 17 super(); 18 } 19 20 public WordNetException(String s) { 21 super(s); 22 } 23 24 public WordNetException(Throwable e) { 25 super(e.toString()); 26 this.e = e; 27 } 28 29 }
|
WordNetException |
|