Sha256: dad37f04d3f7b5e082bd7a4fe1925dcde264cdb091f96b779ab211895e893e41

Contents?: true

Size: 261 Bytes

Versions: 4

Compression:

Stored size: 261 Bytes

Contents

module IEX
  module Errors
    class StatNotFoundError < StandardError
      attr_reader :response, :stat

      def initialize(stat, response)
        @response = response
        @stat = stat
        super "Stat #{stat} Not Found"
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
iex-ruby-client-2.1.0 lib/iex/errors/stat_not_found_error.rb
iex-ruby-client-2.0.0 lib/iex/errors/stat_not_found_error.rb
iex-ruby-client-1.6.0 lib/iex/errors/stat_not_found_error.rb
iex-ruby-client-1.5.0 lib/iex/errors/stat_not_found_error.rb