Exception: Graphd::AbortedError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/graphd/aborted_error.rb

Overview

Error thrown by aborted transaction

Instance Method Summary collapse

Constructor Details

#initialize(msg = 'Transaction has been aborted. Please retry') ⇒ AbortedError

Returns a new instance of AbortedError.



6
7
8
# File 'lib/graphd/aborted_error.rb', line 6

def initialize(msg = 'Transaction has been aborted. Please retry')
  super(msg)
end