1   /*
2    *  InvalidRuleException.java
3    *
4    *  Copyright (c) 2001-2005, The University of Sheffield.
5    *
6    *  This file is part of GATE (see http://gate.ac.uk/), and is free
7    *  software, licenced under the GNU Library General Public License,
8    *  Version 2, June 1991 (in the distribution as file licence.html,
9    *  and also available at http://gate.ac.uk/gate/licence.html).
10   *
11   *  HepTag was originally written by Mark Hepple, this version contains
12   *  modifications by Valentin Tablan and Niraj Aswani.
13   *
14   *  $Id: InvalidRuleException.java,v 1.1 2005/09/30 14:48:12 ian_roberts Exp $
15   */
16  package hepple.postag;
17  
18  /**
19   * Title:        HepTag
20   * Description:  Mark Hepple's POS tagger
21   * Copyright:    Copyright (c) 2001
22   * Company:      University of Sheffield
23   * @author Mark Hepple
24   * @version 1.0
25   */
26  
27  public class InvalidRuleException extends Exception {
28  
29    public InvalidRuleException(){
30    }
31  
32    public InvalidRuleException(String description){
33      super(description);
34    }
35  }
36