class IEX::Errors::SymbolNotFoundError
Attributes
response[R]
symbol[R]
Public Class Methods
new(symbol, response)
click to toggle source
Calls superclass method
# File lib/iex/errors/symbol_not_found_error.rb, line 7 def initialize(symbol, response) @response = response @symbol = symbol super "Symbol #{symbol} Not Found" end