Exception: Albacore::CommandNotFoundError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/albacore/errors/command_not_found_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, executable) ⇒ CommandNotFoundError

Returns a new instance of CommandNotFoundError.



8
9
10
11
# File 'lib/albacore/errors/command_not_found_error.rb', line 8

def initialize message, executable
  super(message)
  @executable = executable
end

Instance Attribute Details

#executableObject (readonly)

Returns the value of attribute executable.



6
7
8
# File 'lib/albacore/errors/command_not_found_error.rb', line 6

def executable
  @executable
end