Sha256: b7a16fb05307d46ea43a3695f94b163a1234ecc5ce2c751481620210bcf36640

Contents?: true

Size: 208 Bytes

Versions: 6

Compression:

Stored size: 208 Bytes

Contents

module BuildMaster
class FileNotFoundError < StandardError
  attr_reader :pathname
  
  def initialize(pathname)
    @pathname = pathname
  end
  
  def message
    "file not found: #{pathname}"
  end
end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
BuildMaster-0.9.0 lib/buildmaster/cotta/file_not_found_error.rb
BuildMaster-0.9.1 lib/buildmaster/cotta/file_not_found_error.rb
BuildMaster-1.0.6 lib/buildmaster/cotta/file_not_found_error.rb
BuildMaster-1.1.12 lib/buildmaster/cotta/file_not_found_error.rb
BuildMaster-1.0.9 lib/buildmaster/cotta/file_not_found_error.rb
BuildMaster-1.1.9 lib/buildmaster/cotta/file_not_found_error.rb