Project

General

Profile

1
package eu.dnetlib.data.transform;
2

    
3
/**
4
 * Created by claudio on 18/01/2017.
5
 */
6
public class VtdException extends Exception {
7

    
8
	public VtdException(final Exception e) {
9
		super(e);
10
	}
11

    
12
	public VtdException(final Throwable e) {
13
		super(e);
14
	}
15
}
(1-1/2)