Added exceptions module

This commit is contained in:
Szirtesi,Tamás Gábor 2023-10-09 14:23:54 +02:00
parent 73f7593d07
commit ba976408e0

6
hc_spider/exc.py Normal file
View File

@ -0,0 +1,6 @@
class AlreadyVisitedError(Exception):
pass
class HTTPResponseError(Exception):
pass