TextTableCellRangeName textTableCellRangeName = new TextTableCellRangeName(cellRangeName);
TextTableCellRange textTableCellRange = new TextTableCellRange(textDocument,newXCellRange, textTableCellRangeName);
return textTableCellRange;
}
catch(Exception exception) {
TextException textException = new TextException(exception.getMessage());
textException.initCause(exception);
throw textException;
}
}