package mainimport ( "errors" "fmt")var errNotFound error = errors.New("Not found error")func main() { fmt.Printf("error: %v", errNotFound)}