newInvalidNameError defined the error message on receiving the invalid defined name or table name.
(name string)
| 276 | // newInvalidNameError defined the error message on receiving the invalid |
| 277 | // defined name or table name. |
| 278 | func newInvalidNameError(name string) error { |
| 279 | return fmt.Errorf("invalid name %q, the name should be starts with a letter or underscore, can not include a space or character, and can not conflict with an existing name in the workbook", name) |
| 280 | } |
| 281 | |
| 282 | // newInvalidOptionalValue defined the error message on receiving the invalid |
| 283 | // optional value. |
no outgoing calls