class RSS::UnknownConversionMethodError
Raised when an unknown conversion error occurs.
Attributes
          from[R]
        
        
          to[R]
        
        Public Class Methods
          new(to, from)
          
          click to toggle source
          
        
        
        
              Calls superclass method
              
          
          
          Exception::new
            # File lib/rss/rss.rb, line 166 def initialize(to, from) @to = to @from = from super("can't convert to #{to} from #{from}.") end