class MenuCommander::MenuNotFound

Attributes

config[R]

:nocov: - covered by external process

paths[R]

:nocov: - covered by external process

Public Class Methods

new(message=nil, paths: nil, config: nil) click to toggle source
Calls superclass method
# File lib/menu_commander/exceptions.rb, line 10
def initialize(message=nil, paths: nil, config: nil)
  message ||= "Could not find menu configuration file"
  @paths, @config = paths, config
  super message
end