You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
341 B
18 lines
341 B
package excelize
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func newInvalidColumnNameError(col string) error {
|
|
return fmt.Errorf("invalid column name %q", col)
|
|
}
|
|
|
|
func newInvalidRowNumberError(row int) error {
|
|
return fmt.Errorf("invalid row number %d", row)
|
|
}
|
|
|
|
func newInvalidCellNameError(cell string) error {
|
|
return fmt.Errorf("invalid cell name %q", cell)
|
|
}
|