From ba976408e0b8775fdcab8e068c1c01c84ab05246 Mon Sep 17 00:00:00 2001 From: Tamas Szirtesi Date: Mon, 9 Oct 2023 14:23:54 +0200 Subject: [PATCH] Added exceptions module --- hc_spider/exc.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hc_spider/exc.py diff --git a/hc_spider/exc.py b/hc_spider/exc.py new file mode 100644 index 0000000..d1a996c --- /dev/null +++ b/hc_spider/exc.py @@ -0,0 +1,6 @@ +class AlreadyVisitedError(Exception): + pass + + +class HTTPResponseError(Exception): + pass