int columnIndex = TextTableCellNameHelper.getColumnIndex(name);
int rowIndex = TextTableCellNameHelper.getRowIndex(name);
try {
return new TextTableCell(textDocument,xCellRange.getCellByPosition(columnIndex,rowIndex));
}catch(IllegalArgumentException illegalArgumentException) {
throw new TextException("A column with the name " + name + " is not available.");
} catch(IndexOutOfBoundsException indexOutOfBoundsException) {
throw new TextException("A column with the name " + name + " is not available.");
}
}