class RSS::ConversionError
Raised when a conversion failure occurs.
Attributes
Public Class Methods
Source
# File bundled-src/rss-0.3.2/lib/rss/rss.rb, line 175 def initialize(string, to, from) @string = string @to = to @from = from super("can't convert #{@string} to #{to} from #{from}.") end
Calls superclass method
Exception::new