github.com/sleungcy-sap/cli@v7.1.0+incompatible/cf/errors/service_association_error.go (about)

     1  package errors
     2  
     3  import (
     4  	. "code.cloudfoundry.org/cli/cf/i18n"
     5  )
     6  
     7  type ServiceAssociationError struct {
     8  }
     9  
    10  func NewServiceAssociationError() error {
    11  	return &ServiceAssociationError{}
    12  }
    13  
    14  func (err *ServiceAssociationError) Error() string {
    15  	return T("Cannot delete service instance. Service keys, bindings, and shares must first be deleted.")
    16  }