comparison src/core/exceptions.py @ 1970:200cd707a46d

plugin XEP-0045, quick_frontend + primitivus (chat): cleaning of XEP-0045 (first pass): - bridge methods/signals now all start with "muc" to follow new convention - internal method use client instead of profile to follow new convention - removed excetpions from plugin XEP-0045 in favor of core.exceptions, NotReady added - cleaned/simplified several part of the code. checkClient removed as it is not needed anymore - self.clients map removed, muc data are now stored directly in client - getRoomEntityNick and getRoomNicksOfUsers are removed as they don't look sane. /!\ This break all room game plugins for the moment - use of uuid4 instead of uuid1 for getUniqueName, as host ID and current time are used for uuid1
author Goffi <goffi@goffi.org>
date Mon, 27 Jun 2016 21:45:11 +0200
parents 2daf7b4c6756
children c0577837680a
comparison
equal deleted inserted replaced
1969:5fbe09b9b568 1970:200cd707a46d
112 pass 112 pass
113 113
114 114
115 class ParsingError(Exception): 115 class ParsingError(Exception):
116 pass 116 pass
117
118
119 # Something which need to be done is not available yet
120 class NotReady(Exception):
121 pass