mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
14 lines
222 B
Python
14 lines
222 B
Python
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"Core exceptions raised by the PubSub module"
|
||
|
|
||
|
class PubSubError(Exception):
|
||
|
pass
|
||
|
|
||
|
class InvalidErrorLevel(PubSubError):
|
||
|
pass
|
||
|
|
||
|
class NoChannelError(PubSubError):
|
||
|
pass
|