Class RSS::UnknownConversionMethodError
In: lib/rss/rss.rb
Parent: Error

Methods

new  

Attributes

from  [R] 
to  [R] 

Public Class methods

[Source]

     # File lib/rss/rss.rb, line 127
127:     def initialize(to, from)
128:       @to = to
129:       @from = from
130:       super("can't convert to #{to} from #{from}.")
131:     end

[Validate]