Exception: RSS::ConversionError
Overview
Raised when a conversion failure occurs.
Instance Attribute Summary collapse
-
#from ⇒ Object
readonly
Returns the value of attribute from.
-
#string ⇒ Object
readonly
Returns the value of attribute string.
-
#to ⇒ Object
readonly
Returns the value of attribute to.
Instance Method Summary collapse
-
#initialize(string, to, from) ⇒ ConversionError
constructor
A new instance of ConversionError.
Constructor Details
#initialize(string, to, from) ⇒ ConversionError
Returns a new instance of ConversionError.
175 176 177 178 179 180 |
# File '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 |
Instance Attribute Details
#from ⇒ Object (readonly)
Returns the value of attribute from.
174 175 176 |
# File 'lib/rss/rss.rb', line 174 def from @from end |
#string ⇒ Object (readonly)
Returns the value of attribute string.
174 175 176 |
# File 'lib/rss/rss.rb', line 174 def string @string end |
#to ⇒ Object (readonly)
Returns the value of attribute to.
174 175 176 |
# File 'lib/rss/rss.rb', line 174 def to @to end |