forked from influxdata/influxdb-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexceptions.py
28 lines (22 loc) · 825 Bytes
/
exceptions.py
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
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
class InfluxDBClientError(Exception):
"""Raised when an error occurs in the request."""
def __init__(self, content, code=None):
if isinstance(content, type(b'')):
content = content.decode('UTF-8', 'replace')
if code is not None:
message = "%s: %s" % (code, content)
else:
message = content
super(InfluxDBClientError, self).__init__(
message
)
self.content = content
self.code = code
class InfluxDBServerError(Exception):
"""Raised when a server error occurs."""
def __init__(self, content):
super(InfluxDBServerError, self).__init__(content)