github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/actor/actionerror/service_broker_name_required_error.go (about) 1 package actionerror 2 3 import ( 4 "fmt" 5 ) 6 7 type ServiceBrokerNameRequiredError struct { 8 ServiceOfferingName string 9 } 10 11 func (e ServiceBrokerNameRequiredError) Error() string { 12 return fmt.Sprintf( 13 "Service offering '%s' is provided by multiple service brokers. Specify a broker name by using the '-b' flag.", 14 e.ServiceOfferingName, 15 ) 16 }