/usr/lib/python2.7/dist-packages/marathon/exceptions.py is in python-marathon 0.8.10-0ubuntu1.
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 | class MarathonError(Exception):
pass
class MarathonHttpError(MarathonError):
def __init__(self, response):
"""
:param :class:`requests.Response` response: HTTP response
"""
self.error_message = response.reason or ''
if response.content:
content = response.json()
self.error_message = content.get('message', self.error_message)
self.error_details = content.get('details')
self.status_code = response.status_code
super(MarathonHttpError, self).__init__(self.__str__())
def __repr__(self):
return 'MarathonHttpError: HTTP %s returned with message, "%s"' % \
(self.status_code, self.error_message)
def __str__(self):
return self.__repr__()
class NotFoundError(MarathonHttpError):
pass
class InternalServerError(MarathonHttpError):
pass
class InvalidChoiceError(MarathonError):
def __init__(self, param, value, options):
super(InvalidChoiceError, self).__init__(
'Invalid choice "{value}" for param "{param}". Must be one of {options}'.format(
param=param, value=value, options=options
)
)
|