Exception: Archipelago::Tranny::UnknownTransactionException

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/archipelago/tranny.rb

Overview

If a member tries to get a transaction that the manager doesnt know about it gets this.

Instance Method Summary collapse

Constructor Details

#initialize(transaction_id, manager) ⇒ UnknownTransactionException

Returns a new instance of UnknownTransactionException.



61
62
63
# File 'lib/archipelago/tranny.rb', line 61

def initialize(transaction_id, manager)
  super("#{manager.inspect} doesnt know about any transaction with id #{transaction_id.inspect}")
end