Exception: RSS::ConversionError
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.
139 140 141 142 143 144 |
# File 'lib/rss/rss.rb', line 139 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.
138 139 140 |
# File 'lib/rss/rss.rb', line 138 def from @from end |
#string ⇒ Object (readonly)
Returns the value of attribute string.
138 139 140 |
# File 'lib/rss/rss.rb', line 138 def string @string end |
#to ⇒ Object (readonly)
Returns the value of attribute to.
138 139 140 |
# File 'lib/rss/rss.rb', line 138 def to @to end |