View Javadoc

1   /*
2    * This file is part of hyphenType. hyphenType is free software: you can
3    * redistribute it and/or modify it under the terms of the GNU General Public
4    * License as published by the Free Software Foundation, either version 3 of the
5    * License, or (at your option) any later version. hyphenType is distributed in
6    * the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
7    * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
8    * the GNU General Public License for more details. You should have received a
9    * copy of the GNU General Public License along with hyphenType. If not, see
10   * <http://www.gnu.org/licenses/>.
11   */
12  package org.hyphenType.exceptions;
13  
14  /**
15   * TODO Create a complete description of all conditions in which an option interface can be invalid.
16   * 
17   * @author Aurelio Akira M. Matsui
18   */
19  public class InvalidOptionsInterfaceException extends Exception {
20  
21      private static final long serialVersionUID = 6008147707245210718L;
22  
23      public InvalidOptionsInterfaceException() {
24          super();
25      }
26  
27      public InvalidOptionsInterfaceException(String message, Throwable cause) {
28          super(message, cause);
29      }
30  
31      public InvalidOptionsInterfaceException(String message) {
32          super(message);
33      }
34  
35      public InvalidOptionsInterfaceException(Throwable cause) {
36          super(cause);
37      }
38  }