...

Source file src/github.com/redhat-developer/odo/pkg/platform/errors.go

Documentation: github.com/redhat-developer/odo/pkg/platform

     1  package platform
     2  
     3  import "fmt"
     4  
     5  // PodNotFoundError returns an error if no pod is found with the selector
     6  type PodNotFoundError struct {
     7  	Selector string
     8  }
     9  
    10  func (e *PodNotFoundError) Error() string {
    11  	return fmt.Sprintf("pod not found for the selector: %s", e.Selector)
    12  }
    13  

View as plain text