blob: 3f595dd6da95c55cec2942db71c111b9894d949c (
plain)
1
2
3
4
5
6
7
8
9
  | 
"""GN3 custom exceptions"""
class FailedToQueue(Exception):
    """Raised when a queueing operation fails"""
class RedisConnectionError(ConnectionError):
    """Raised when there is no Redis connection"""
 
  |