comparison sat/core/exceptions.py @ 3745:a8c7e5cef0cb

comp AP gateway: signature checking, caching and threads management: - HTTP signature is checked for incoming messages - AP actor can now be followed using pubsub subscription. When following is accepted, the node is cached - replies to posts are put in cached pubsub comment nodes, with a `comments_max_depth` option to limit the number of comment nodes for a root message (documentation will come to explain this). ticket 364
author Goffi <goffi@goffi.org>
date Tue, 22 Mar 2022 17:00:42 +0100
parents 5d67502bdc8c
children 03761f8ba8bb
comparison
equal deleted inserted replaced
3744:658ddbabaf36 3745:a8c7e5cef0cb
121 121
122 class ParsingError(Exception): 122 class ParsingError(Exception):
123 pass 123 pass
124 124
125 125
126 class EncryptionError(Exception):
127 """Invalid encryption"""
128 pass
129
130
126 # Something which need to be done is not available yet 131 # Something which need to be done is not available yet
127 class NotReady(Exception): 132 class NotReady(Exception):
128 pass 133 pass
129 134
130 135