newCoordinatesToCellNameError defined the error message on converts [X, Y] coordinates to alpha-numeric cell name.
(col, row int)
| 222 | // newCoordinatesToCellNameError defined the error message on converts [X, Y] |
| 223 | // coordinates to alpha-numeric cell name. |
| 224 | func newCoordinatesToCellNameError(col, row int) error { |
| 225 | return fmt.Errorf("invalid cell reference [%d, %d]", col, row) |
| 226 | } |
| 227 | |
| 228 | // newFieldLengthError defined the error message on receiving the field length |
| 229 | // overflow. |
no outgoing calls