7 lines
95 B
Python
7 lines
95 B
Python
class QueueException(Exception):
|
|
pass
|
|
|
|
|
|
class QueuePushError(QueueException):
|
|
pass
|