class Sequent::Core::EventStore::DeserializeEventError

Attributes

event_hash[R]

Public Class Methods

new(event_hash) click to toggle source
Calls superclass method
# File lib/sequent/core/event_store.rb, line 19
def initialize(event_hash)
  super()
  @event_hash = event_hash
end

Public Instance Methods

message() click to toggle source
# File lib/sequent/core/event_store.rb, line 24
def message
  "Event hash: #{event_hash.inspect}\nCause: #{cause.inspect}"
end