Method: Bwrap::Execution::CommandNotFound#initialize
- Defined in:
- lib/bwrap/execution/exceptions.rb
#initialize(command:) ⇒ CommandNotFound
Returns a new instance of CommandNotFound.
29 30 31 32 33 34 |
# File 'lib/bwrap/execution/exceptions.rb', line 29 def initialize command: @command = command msg = "Failed to find #{command} from PATH." super msg end |