package errors import "fmt" type NoConfigFoundError struct { path string } func (e *NoConfigFoundError) Error() string { return fmt.Sprintf("no config file found in %s", e.path) } func NewNoConfigFoundError(path string) *NoConfigFoundError { return &NoConfigFoundError{path: path} }