github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+incompatible/actor/actionerror/invalid_command_error.go (about)

     1  package actionerror
     2  
     3  import "fmt"
     4  
     5  // InvalidCommandError represents an error that happens when help is called
     6  // with an invalid command.
     7  type InvalidCommandError struct {
     8  	CommandName string
     9  }
    10  
    11  func (err InvalidCommandError) Error() string {
    12  	return fmt.Sprintf("'%s' is not a registered command. See 'cf help -a'", err.CommandName)
    13  }