1 package net.sf.mavenhist.extractor;
2
3 /**
4 * Exception when value extraction fails.
5 */
6 public class ExtractionException extends Exception {
7
8 /**
9 * Constructor.
10 * @param message to store in the exception.
11 * @param t wrapped exception
12 */
13 public ExtractionException(String message, Throwable t) {
14 super(message, t);
15 }
16 }