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

Methods

new  

Attributes

from  [R] 
to  [R] 

Public Class methods

[Source]

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

[Validate]