class Morpheus::Cli::CommandNotFoundError

An error indicating the command was not recognized, assigned exit code 127

Public Class Methods

new(msg, args=[], optparse=nil, exit_code=nil) click to toggle source
Calls superclass method Morpheus::Cli::CommandError::new
# File lib/morpheus/cli/errors.rb, line 20
def initialize(msg, args=[], optparse=nil, exit_code=nil)
  super(msg, args, optparse, exit_code || 127)
end