github.com/mook-as/cf-cli@v7.0.0-beta.28.0.20200120190804-b91c115fae48+incompatible/actor/actionerror/no_organization_targeted_error.go (about)

     1  package actionerror
     2  
     3  // NoOrganizationTargetedError represents the scenario when an org is not targeted.
     4  type NoOrganizationTargetedError struct {
     5  	BinaryName string
     6  }
     7  
     8  func (NoOrganizationTargetedError) Error() string {
     9  	// The error message will be replaced by a translated message, returning the
    10  	// empty string does not add to the translation files.
    11  	return ""
    12  }