Sagi Dayan
2ca1e7826a
Some checks failed
Codespell / Check for spelling errors (push) Failing after 1m35s
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
15 lines
325 B
Go
15 lines
325 B
Go
package errors
|
|
|
|
import "fmt"
|
|
|
|
type ProjectNotFoundError struct {
|
|
path string
|
|
}
|
|
|
|
func (e *ProjectNotFoundError) Error() string {
|
|
return fmt.Sprintf("No project found for path '%s'. Did you initialize?", e.path)
|
|
}
|
|
|
|
func NewProjectNotFoundError(path string) *ProjectNotFoundError {
|
|
return &ProjectNotFoundError{path: path}
|
|
}
|