Sha256: 12061f518aeefe6c9cbfb9344115e7fecda33adcb2ed6431e1fa3d182900c886
Contents?: true
Size: 292 Bytes
Versions: 24
Compression:
Stored size: 292 Bytes
Contents
module IEX module Errors class SymbolNotFoundError < StandardError attr_reader :symbol attr_reader :response def initialize(symbol, response) @response = response @symbol = symbol super "Symbol #{symbol} Not Found" end end end end
Version data entries
24 entries across 24 versions & 1 rubygems