In Files

  • rss/rss.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

RSS::ConversionError

Attributes

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

Public Class Methods

new(string, to, from) click to toggle source
 
               # File rss/rss.rb, line 123
def initialize(string, to, from)
  @string = string
  @to = to
  @from = from
  super("can't convert #{@string} to #{to} from #{from}.")
end