1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/errors.py

11 lines
133 B
Python
Raw Normal View History

2017-10-05 07:47:59 +00:00
class RequestError(Exception):
2017-10-08 18:26:51 +00:00
pass
2018-09-17 22:07:00 +00:00
2017-10-08 18:26:51 +00:00
class NotFoundError(Exception):
2017-10-27 09:53:05 +00:00
pass
2018-09-17 22:07:00 +00:00
2017-10-27 09:53:05 +00:00
class AlreadyExistingError(Exception):
2017-10-30 09:46:37 +00:00
pass