Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • rss/rss.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

RSS::UnknownConvertMethod

Raised when an unknown conversion error occurs.

Attributes

from[R]
to[R]

Public Class Methods

new(to, from) click to toggle source
 
               # File rss/rss.rb, line 149
def initialize(to, from)
  @to = to
  @from = from
  super("can't convert to #{to} from #{from}.")
end