Sha256: 4f19e31c271bc0f42b9b6fdf089cba81f6ceade64ae7bff8512cd3c96f56d077

Contents?: true

Size: 352 Bytes

Versions: 15

Compression:

Stored size: 352 Bytes

Contents

# coding: utf-8

module Fig
  # A (possibly remote) file that was looked for was not found.  This may or
  # may not actually be a problem; i.e. this may be the result of an existence
  # test.
  class FileNotFoundError < StandardError
    attr_reader :path

    def initialize(message, path)
      super(message)

      @path = path
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
fig-1.27.10 lib/fig/file_not_found_error.rb
fig-1.27.8 lib/fig/file_not_found_error.rb
fig-1.27.5 lib/fig/file_not_found_error.rb
fig-1.27.4 lib/fig/file_not_found_error.rb
fig-1.27.3 lib/fig/file_not_found_error.rb
fig-1.27.0 lib/fig/file_not_found_error.rb
fig-1.26.1.beta.1 lib/fig/file_not_found_error.rb
fig-1.26.0 lib/fig/file_not_found_error.rb
fig-1.25.1.beta.1 lib/fig/file_not_found_error.rb
fig-1.25.0 lib/fig/file_not_found_error.rb
fig-1.24.1.beta.3 lib/fig/file_not_found_error.rb
fig-1.24.1.beta.2 lib/fig/file_not_found_error.rb
fig-1.24.1.beta.1 lib/fig/file_not_found_error.rb
fig-1.24.0 lib/fig/file_not_found_error.rb
fig-1.23.1.beta.1 lib/fig/file_not_found_error.rb