WordNetException.java |
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 */ 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.toString()); 24 this.e = e; 25 } 26 27 }