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

8 lines
130 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
class NotFoundError(Exception):
2017-10-27 09:53:05 +00:00
pass
class AlreadyExistingError(Exception):
2017-10-05 07:47:59 +00:00
pass