dnet-core/dnet-core-components/src/main/java/eu/dnetlib/data/transformation/service/rmi/TransformationServiceExcept...

22 lines
508 B
Java

package eu.dnetlib.data.transformation.service.rmi;
import eu.dnetlib.common.rmi.RMIException;
public class TransformationServiceException extends RMIException {
private static final long serialVersionUID = 6186153317305098215L;
public TransformationServiceException(String string) {
super(string);
}
public TransformationServiceException(String string, Throwable exception) {
super(string, exception);
}
public TransformationServiceException(Throwable exception) {
super(exception);
}
}