Skip to content

Commit

Permalink
docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
pramttl committed Jan 17, 2019
1 parent a676655 commit 00851d0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions braze/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,21 @@ def __init__(self, reset_epoch_s):


class BrazeClientError(Exception):
"""
Represents any Braze Fatal Error.
https://www.braze.com/docs/developer_guide/rest_api/user_data/#user-track-responses
"""

pass


class BrazeInternalServerError(BrazeClientError):
"""
Used for Braze API responses where response code is of type 5XX suggesting
Braze side server errors.
"""

pass


Expand Down

0 comments on commit 00851d0

Please sign in to comment.