github.com/elopio/cli@v6.21.2-0.20160902224010-ea909d1fdb2f+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 and bindings must first be deleted") 16 }