class GoogleFinance::Errors::SymbolsNotFoundError
Attributes
response[R]
symbols[R]
Public Class Methods
new(symbols, response)
click to toggle source
Calls superclass method
# File lib/google-finance/errors/symbols_not_found_error.rb, line 7 def initialize(symbols, response) @response = response @symbols = symbols super "One or More Symbols #{symbols.join(' ')} Not Found" end