Source code for flask_websub.errors

[docs] class FlaskWebSubError(Exception): """Base class for flask_websub errors"""
[docs] class DiscoveryError(FlaskWebSubError): """For errors during canonical topic url and hub url discovery"""
[docs] class SubscriberError(FlaskWebSubError): """For errors while subscribing to a hub"""
[docs] class NotificationError(FlaskWebSubError): """Raised when the input of the send_change_notification task is invalid"""