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 123
123:     def initialize(string, to, from)
124:       @string = string
125:       @to = to
126:       @from = from
127:       super("can't convert #{@string} to #{to} from #{from}.")
128:     end

[Validate]