Sha256: c6b89e8ea2d2af87e6b5829003067cbd040d9d0b1f068d12071269fec10f7a0a

Contents?: true

Size: 227 Bytes

Versions: 105

Compression:

Stored size: 227 Bytes

Contents

# -*- encoding: utf-8 -*-

module Albacore
  class CommandNotFoundError < StandardError

    attr_reader :executable

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

Version data entries

105 entries across 105 versions & 1 rubygems

Version Path
albacore-2.0.0.rc.5 lib/albacore/errors/command_not_found_error.rb
albacore-2.0.0.rc.4 lib/albacore/errors/command_not_found_error.rb
albacore-2.0.0.rc.3 lib/albacore/errors/command_not_found_error.rb
albacore-2.0.0.rc.2 lib/albacore/errors/command_not_found_error.rb
albacore-2.0.0.rc.1 lib/albacore/errors/command_not_found_error.rb