Endpoints, Exceptions, and basic API obj with auth and getters

This commit is contained in:
Maël Kervella 2018-05-24 10:11:32 +00:00
parent c6baf34a15
commit 6d47993aee
3 changed files with 215 additions and 0 deletions

8
exceptions.py Normal file
View file

@ -0,0 +1,8 @@
class URLNameNotExists(ValueError):
pass
class URLParameterMissing(ValueError):
pass
class InvalidCredentials(ValueError):
pass