Exception: EZTV::SeriesNotFoundError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/eztv.rb

Instance Method Summary collapse

Constructor Details

#initialize(series) ⇒ SeriesNotFoundError

Returns a new instance of SeriesNotFoundError.



7
8
9
10
# File 'lib/eztv.rb', line 7

def initialize(series)
  msg = "Unable to find '#{series.name}' on https://eztv.it."
  super(msg)
end