gignore/error.go
onyx-and-iris 38b0611e4e
Some checks failed
CI / Lint (push) Has been cancelled
update error/logging messages
2025-03-31 22:05:22 +01:00

17 lines
382 B
Go

// Package gignore provides a way to manage .gitignore files and templates.
package gignore
import (
"fmt"
"strings"
)
type templateNotFoundError struct {
template string
templatesSearched []string
}
func (e *templateNotFoundError) Error() string {
return fmt.Sprintf("template '%s' not found in %s registry", e.template, strings.Join(e.templatesSearched, ", "))
}