github.com/cloudfoundry/cli@v7.1.0+incompatible/actor/actionerror/service_and_broker_combination_not_found_error.go (about)

     1  package actionerror
     2  
     3  import "fmt"
     4  
     5  type ServiceAndBrokerCombinationNotFoundError struct {
     6  	BrokerName  string
     7  	ServiceName string
     8  }
     9  
    10  func (e ServiceAndBrokerCombinationNotFoundError) Error() string {
    11  	return fmt.Sprintf("Service '%s' provided by service broker '%s' not found.\n", e.ServiceName, e.BrokerName)
    12  }