/usr/lib/python2.7/dist-packages/kombu/exceptions.py is in python-kombu 3.0.7-1ubuntu1.
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 69 | """
kombu.exceptions
================
Exceptions.
"""
from __future__ import absolute_import
import socket
from amqp import ChannelError, ConnectionError, ResourceError
__all__ = ['NotBoundError', 'MessageStateError', 'TimeoutError',
'LimitExceeded', 'ConnectionLimitExceeded',
'ChannelLimitExceeded', 'ConnectionError',
'ChannelError', 'VersionMismatch', 'SerializerNotInstalled',
'ResourceError']
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 VersionMismatch(KombuError):
pass
class SerializerNotInstalled(KombuError):
"""Support for the requested serialization type is not installed"""
pass
class ContentDisallowed(SerializerNotInstalled):
"""Consumer does not allow this content-type."""
pass
class InconsistencyError(ConnectionError):
"""Data or environment has been found to be inconsistent,
depending on the cause it may be possible to retry the operation."""
pass
|