File xsd = createAbsolutePath(relativePath);
return xsd;
}
private TransformationsTabRow queryTransformation(long txId) throws SQLException {
TransformationsTab table = new TransformationsTab(connection);
TransformationsTabRow row = table.query(txId);
if (row == null) {
throw new IllegalArgumentException("Unknown Transformation ID: " + txId);
}
return row;
}