class Albacore::CommandNotFoundError

Attributes

executable[R]

Public Class Methods

new(message, executable) click to toggle source
Calls superclass method
# File lib/albacore/errors/command_not_found_error.rb, line 7
def initialize message, executable
  super(message)
  @executable = executable
end