Exception: RSS::UnknownConversionMethodError
Instance Attribute Summary (collapse)
-
- (Object) from
readonly
Returns the value of attribute from.
-
- (Object) to
readonly
Returns the value of attribute to.
Instance Method Summary (collapse)
-
- (UnknownConversionMethodError) initialize(to, from)
constructor
A new instance of UnknownConversionMethodError.
Constructor Details
- (UnknownConversionMethodError) initialize(to, from)
A new instance of UnknownConversionMethodError
128 129 130 131 132 |
# File 'lib/rss/rss.rb', line 128 def initialize(to, from) @to = to @from = from super("can't convert to #{to} from #{from}.") end |