Source code for stream_framework.exceptions

class SerializationException(Exception):

[docs] ''' Raised when encountering invalid data for serialization ''' pass class DuplicateActivityException(Exception):
[docs] ''' Raised when someone sticks a duplicate activity in the aggregated activity ''' pass class ActivityNotFound(Exception):
[docs] ''' Raised when the activity is not present in the aggregated Activity ''' pass