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

Methods

new  

Attributes

from  [R] 
string  [R] 
to  [R] 

Public Class methods

[Source]

     # File lib/rss/rss.rb, line 138
138:     def initialize(string, to, from)
139:       @string = string
140:       @to = to
141:       @from = from
142:       super("can't convert #{@string} to #{to} from #{from}.")
143:     end

[Validate]