class OFX::Data::Serialization::SerializerNotFoundError
Public Class Methods
generate(ofx_type, context_name)
click to toggle source
# File lib/ofx/data/serialization/registry.rb, line 35 def self.generate(ofx_type, context_name) message = "Cannot find serializer for OFX type #{ofx_type.inspect}" message << " with context name #{context_name.inspect}" if context_name new(message) end