github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/cf/errors/unbindable_service_error.go (about)

     1  package errors
     2  
     3  import (
     4  	. "code.cloudfoundry.org/cli/cf/i18n"
     5  )
     6  
     7  type UnbindableServiceError struct {
     8  }
     9  
    10  func NewUnbindableServiceError() error {
    11  	return &UnbindableServiceError{}
    12  }
    13  
    14  func (err *UnbindableServiceError) Error() string {
    15  	return T("This service doesn't support creation of keys.")
    16  }