github.com/Thanhphan1147/cloudfoundry-cli@v7.1.0+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 }