comparison sat_pubsub/error.py @ 423:af73d57829ed

error: fixed NotLeafNodeError class definition
author Goffi <goffi@goffi.org>
date Mon, 01 Jun 2020 12:24:39 +0200
parents 794593086517
children 074037832daf
comparison
equal deleted inserted replaced
422:c21f31355ab9 423:af73d57829ed
84 """ 84 """
85 There already exists a subscription to this node. 85 There already exists a subscription to this node.
86 """ 86 """
87 87
88 88
89 def NotLeafNodeError(Error): 89 class NotLeafNodeError(Error):
90 """a leaf node is expected but we have a collection""" 90 """a leaf node is expected but we have a collection"""
91 91
92 92
93 class Forbidden(Error): 93 class Forbidden(Error):
94 pass 94 pass