Source code for stream_framework.exceptions



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