add some client work

This commit is contained in:
Andrew Herrington
2021-12-10 18:05:49 -06:00
parent 90233c568e
commit 2bfece1e56
14 changed files with 428 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
"""healthchecks_io exceptions."""
class HCAPIError(Exception):
"""API Exception for when we have an error with the healthchecks api."""
...
class HCAPIAuthError(HCAPIError):
"""Thrown when we fail to auth to the Healthchecks api."""
...