Added more tests

This commit is contained in:
2024-07-07 17:13:22 +02:00
parent 23b4e6442d
commit 9f341a6146
7 changed files with 157 additions and 13 deletions

View File

@ -0,0 +1,18 @@
package errors
import "fmt"
// UnknownFunction represents unknown function errors.
type UnknownFunction struct {
Name string
CorrectName string
}
// Error generates the string representation.
func (err *UnknownFunction) Error() string {
if err.CorrectName != "" {
return fmt.Sprintf("Unknown function '%s', did you mean '%s'?", err.Name, err.CorrectName)
}
return fmt.Sprintf("Unknown function '%s'", err.Name)
}