github.com/jenspinney/cli@v6.42.1-0.20190207184520-7450c600020e+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  }