Raised when a conversion failure occurs.

Methods
N
Attributes
[R] from
[R] string
[R] to
Class Public methods
new(string, to, from)
# File lib/rss/rss.rb, line 163
def initialize(string, to, from)
  @string = string
  @to = to
  @from = from
  super("can't convert #{@string} to #{to} from #{from}.")
end