Source code for eventscore.core.exceptions
[docs]
class AlreadySpawnedError(EventsCoreError):
message = "Not able to modify consumers after spawning workers."
[docs]
class ClonesMismatchError(EventsCoreError):
message = "Pipeline must have the same number of clones for all items."
[docs]
class EventNotSentError(EventsCoreError):
message = "Could not send message to stream due to an unexpected error."
[docs]
class EmptyStreamError(EventsCoreError):
message = "Stream does not have unprocessed messages."
[docs]
class TooManyDataError(EventsCoreError):
message = "Unexpected number of data received for event."