github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/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 }