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 112
112:     def initialize(to, from)
113:       @to = to
114:       @from = from
115:       super("can't convert to #{to} from #{from}.")
116:     end

[Validate]