| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| IncompatibleProcessorException |
|
| 1.0;1 |
| 1 | // BSD License (http://www.galagosearch.org/license) | |
| 2 | package org.galagosearch.tupleflow; | |
| 3 | ||
| 4 | /** | |
| 5 | * | |
| 6 | * @author trevor | |
| 7 | */ | |
| 8 | public class IncompatibleProcessorException extends Exception { | |
| 9 | public IncompatibleProcessorException(String message) { | |
| 10 | 0 | super(message); |
| 11 | 0 | } |
| 12 | ||
| 13 | public IncompatibleProcessorException(String message, Throwable e) { | |
| 14 | 0 | super(message, e); |
| 15 | 0 | } |
| 16 | } |