class Synapse::EventStore::StreamNotFoundError

Raised when a stream could not be found for a specific aggregate

Public Class Methods

new(type_identifier, aggregate_id) click to toggle source

@param [String] type_identifier @param [Object] aggregate_id @return [undefined]

Calls superclass method
# File lib/synapse/event_store/errors.rb, line 11
def initialize(type_identifier, aggregate_id)
  super 'Stream not found for [%s] [%s]' % [type_identifier, aggregate_id]
end