github.com/sleungcy/cli@v7.1.0+incompatible/util/manifestparser/invalid_manifest_application_path_error.go (about)

     1  package manifestparser
     2  
     3  import "fmt"
     4  
     5  type InvalidManifestApplicationPathError struct {
     6  	Path string
     7  }
     8  
     9  func (e InvalidManifestApplicationPathError) Error() string {
    10  	return fmt.Sprintf("File not found locally, make sure the file exists at given path %s", e.Path)
    11  }