comparison idavoll/backend.py @ 34:b65b7ea5c992

Remove nonsense message. Add NotSubscribed exception.
author Ralph Meijer <ralphm@ik.nu>
date Sun, 31 Oct 2004 15:55:38 +0000
parents d4fc29bb5381
children 788114f9b5bc
comparison
equal deleted inserted replaced
33:7e9bee656986 34:b65b7ea5c992
25 25
26 class NodeExists(Error): 26 class NodeExists(Error):
27 pass 27 pass
28 28
29 class NotImplemented(Error): 29 class NotImplemented(Error):
30 msg = 'Oops!' 30 pass
31
32 class NotSubscribed(Error):
33 pass
31 34
32 class IBackendService(components.Interface): 35 class IBackendService(components.Interface):
33 """ Interface to a backend service of a pubsub service. """ 36 """ Interface to a backend service of a pubsub service. """
34 37
35 def get_supported_affiliations(self): 38 def get_supported_affiliations(self):