class SelfData::ConversionError
Attributes
format[R]
real_error[R]
Public Class Methods
new(format = nil, real_error = nil)
click to toggle source
Calls superclass method
# File lib/self_data/errors.rb, line 27 def initialize(format = nil, real_error = nil) @format = format @real_error = real_error super("#{format}: #{real_error.inspect}") end