class OFX::Errors::UnsupportedVersionError
Raised when the OFX version declared in the file is not supported.
Attributes
The unsupported version string found in the file (String).
Public Class Methods
Source
# File lib/ofx_kit/errors/unsupported_version_error.rb, line 14 def initialize(version) @version = version super("Unsupported OFX version: #{version}") end
Creates a new error for the given unsupported version string.
Calls superclass method