Sha256: 5e1be249dec81ef096dfcd6ba8e024c2d3d056351413e846e6dbdd19c58ed198

Contents?: true

Size: 335 Bytes

Versions: 36

Compression:

Stored size: 335 Bytes

Contents

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

36 entries across 36 versions & 1 rubygems

Version Path
fig-1.23.0 lib/fig/file_not_found_error.rb
fig-1.22.1.beta.1 lib/fig/file_not_found_error.rb
fig-1.22.0 lib/fig/file_not_found_error.rb
fig-1.21.1.beta.2 lib/fig/file_not_found_error.rb
fig-1.21.1.beta.1 lib/fig/file_not_found_error.rb
fig-1.21.0 lib/fig/file_not_found_error.rb
fig-1.20.1.beta.1 lib/fig/file_not_found_error.rb
fig-1.20.0 lib/fig/file_not_found_error.rb
fig-1.19.0 lib/fig/file_not_found_error.rb
fig-1.18.0 lib/fig/file_not_found_error.rb
fig-1.17.0 lib/fig/file_not_found_error.rb
fig-1.16.1.beta.1 lib/fig/file_not_found_error.rb
fig-1.16.0 lib/fig/file_not_found_error.rb
fig-1.15.1.beta.2 lib/fig/file_not_found_error.rb
fig-1.15.1.beta.1 lib/fig/file_not_found_error.rb
fig-1.15.0 lib/fig/file_not_found_error.rb
fig-1.14.0 lib/fig/file_not_found_error.rb
fig-1.13.0 lib/fig/file_not_found_error.rb
fig-1.12.0 lib/fig/file_not_found_error.rb
fig-1.11.0 lib/fig/file_not_found_error.rb