class Graphd::AbortedError

Error thrown by aborted transaction

Public Class Methods

new(msg = 'Transaction has been aborted. Please retry') click to toggle source
Calls superclass method
# File lib/graphd/aborted_error.rb, line 6
def initialize(msg = 'Transaction has been aborted. Please retry')
  super(msg)
end