class RubyEventStore::EventNotFound

Attributes

event_id[R]

Public Class Methods

new(event_id) click to toggle source
Calls superclass method
# File lib/ruby_event_store/errors.rb, line 20
def initialize(event_id)
  super("Event not found: #{event_id}")
  @event_id = event_id
end