/usr/share/pyshared/kombu/exceptions.py is in python-kombu 2.1.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | """
kombu.exceptions
================
Exceptions.
:copyright: (c) 2009 - 2012 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import
import socket
__all__ = ["NotBoundError", "MessageStateError", "TimeoutError",
"LimitExceeded", "ConnectionLimitExceeded",
"ChannelLimitExceeded", "StdChannelError", "VersionMismatch",
"SerializerNotInstalled"]
TimeoutError = socket.timeout
class KombuError(Exception):
"""Common subclass for all Kombu exceptions."""
class NotBoundError(KombuError):
"""Trying to call channel dependent method on unbound entity."""
pass
class MessageStateError(KombuError):
"""The message has already been acknowledged."""
pass
class LimitExceeded(KombuError):
"""Limit exceeded."""
pass
class ConnectionLimitExceeded(LimitExceeded):
"""Maximum number of simultaneous connections exceeded."""
pass
class ChannelLimitExceeded(LimitExceeded):
"""Maximum number of simultaneous channels exceeded."""
pass
class StdChannelError(KombuError):
pass
class VersionMismatch(KombuError):
pass
class SerializerNotInstalled(KombuError):
"""Support for the requested serialization type is not installed"""
pass
class InconsistencyError(StdChannelError):
"""Data or environment has been found to be inconsistent,
depending on the cause it may be possible to retry the operation."""
pass
|