github.com/liamawhite/cli-with-i18n@v6.32.1-0.20171122084555-dede0a5c3448+incompatible/cf/errors/unbindable_service_error.go (about) 1 package errors 2 3 import ( 4 . "github.com/liamawhite/cli-with-i18n/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 }