View Javadoc

1   package org.hyphenType.optionsextractor;
2   
3   public class OptionsExtractorException extends Exception {
4       
5       private static final long serialVersionUID = -3472033083135157142L;
6       
7       OptionsExtractorException(String message) {
8           super(message);
9       }
10      
11      OptionsExtractorException(String message, Throwable cause) {
12          super(message, cause);
13      }
14  }