Sha256: 7c1da97d1c4d18bff97ace19591cb8c4f8e70468ba744c622fd88553ac02aad0

Contents?: true

Size: 331 Bytes

Versions: 3

Compression:

Stored size: 331 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 NotFoundError < StandardError
    attr_reader :path

    def initialize(message, path)
      super(message)

      @path = path
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fig-0.1.77 lib/fig/not_found_error.rb
fig-0.1.76 lib/fig/not_found_error.rb
fig-0.1.75 lib/fig/not_found_error.rb