github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+incompatible/actor/actionerror/application_instances_not_found_error.go (about) 1 package actionerror 2 3 import "fmt" 4 5 // ApplicationInstancesNotFoundError is returned when the application does not 6 // have running instances. 7 type ApplicationInstancesNotFoundError struct { 8 ApplicationGUID string 9 } 10 11 func (e ApplicationInstancesNotFoundError) Error() string { 12 return fmt.Sprintf("Application instances '%s' not found.", e.ApplicationGUID) 13 }