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