31073d7712
git-svn-id: http://google-refine.googlecode.com/svn/trunk@2296 7d457c2a-affb-35e4-300a-418c747d4874
24 lines
480 B
Java
24 lines
480 B
Java
package com.google.refine.importers.tree;
|
|
|
|
|
|
/**
|
|
* An Exception from the TreeReader interface methods.
|
|
*/
|
|
public class TreeReaderException extends Exception {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public TreeReaderException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public TreeReaderException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public TreeReaderException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
}
|