Coverage for beyonic.errors : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
pass def __init__(self, message=None, http_body=None, http_status=None, json_body=None): super(BeyonicError, self).__init__(message)
self.http_body = http_body self.http_status = http_status self.json_body = json_body """
""" Raised when the Beyonic API responds with an HTTP error """ |