newCellNameToCoordinatesError defined the error message on converts alphanumeric cell name to coordinates.
(cell string, err error)
| 216 | // newCellNameToCoordinatesError defined the error message on converts |
| 217 | // alphanumeric cell name to coordinates. |
| 218 | func newCellNameToCoordinatesError(cell string, err error) error { |
| 219 | return fmt.Errorf("cannot convert cell %q to coordinates: %v", cell, err) |
| 220 | } |
| 221 | |
| 222 | // newCoordinatesToCellNameError defined the error message on converts [X, Y] |
| 223 | // coordinates to alpha-numeric cell name. |
no outgoing calls