Exception: RSS::UnsupportedMakerVersionError

Inherits:
Error
  • Object
show all
Defined in:
lib/rss/rss.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(version) ⇒ UnsupportedMakerVersionError

Returns a new instance of UnsupportedMakerVersionError.



157
158
159
160
# File 'lib/rss/rss.rb', line 157

def initialize(version)
  @version = version
  super("Maker doesn't support version: #{@version}")
end

Instance Attribute Details

#versionObject (readonly)

Returns the value of attribute version.



156
157
158
# File 'lib/rss/rss.rb', line 156

def version
  @version
end