class RSS::UnknownConversionMethodError
Raised when an unknown conversion error occurs.
Attributes
from[R]
to[R]
Public Class Methods
new(to, from)
click to toggle source
Calls superclass method
# File rss-0.3.0/lib/rss/rss.rb, line 163 def initialize(to, from) @to = to @from = from super("can't convert to #{to} from #{from}.") end