newNotWorksheetError defined the error message on receiving a sheet which not a worksheet.
(name string)
| 318 | // newNotWorksheetError defined the error message on receiving a sheet which |
| 319 | // not a worksheet. |
| 320 | func newNotWorksheetError(name string) error { |
| 321 | return fmt.Errorf("sheet %s is not a worksheet", name) |
| 322 | } |
| 323 | |
| 324 | // newPivotTableDataRangeError defined the error message on receiving the |
| 325 | // invalid pivot table data range. |
no outgoing calls
no test coverage detected