Exception: OFX::Statement::UnknownTrntype

Inherits:
StandardError
  • Object
show all
Defined in:
lib/ofx/statement/transaction.rb

Instance Method Summary collapse

Constructor Details

#initialize(trntype) ⇒ UnknownTrntype

Returns a new instance of UnknownTrntype.



42
43
44
45
# File 'lib/ofx/statement/transaction.rb', line 42

def initialize(trntype)
  super()
  @trntype = trntype
end

Instance Method Details

#to_sObject



47
48
49
# File 'lib/ofx/statement/transaction.rb', line 47

def to_s
  "Unknown Trntype #{@trntype.inspect}"
end