github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/api/cloudcontroller/ccerror/droplet_not_found_error.go (about)

     1  package ccerror
     2  
     3  // DropletNotFoundError is returned when an endpoint cannot find the
     4  // specified application
     5  type DropletNotFoundError struct {
     6  }
     7  
     8  func (e DropletNotFoundError) Error() string {
     9  	return "Droplet not found"
    10  }