aboutsummaryrefslogtreecommitdiffstats
path: root/http_errors.py
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2019-07-21 21:59:52 -0700
committerJames Taylor <user234683@users.noreply.github.com>2019-07-21 21:59:52 -0700
commit8eff0bb9e23690bb8a87453a4a6d4d415b9e1a95 (patch)
tree4b2ecdf36896360d53cd0183f98b8484cc980a79 /http_errors.py
parentfc295ac93d0ad6b0272aa94f2d2ea44002ecbc48 (diff)
downloadyt-local-8eff0bb9e23690bb8a87453a4a6d4d415b9e1a95.tar.lz
yt-local-8eff0bb9e23690bb8a87453a4a6d4d415b9e1a95.tar.xz
yt-local-8eff0bb9e23690bb8a87453a4a6d4d415b9e1a95.zip
Delete obsolete files
Diffstat (limited to 'http_errors.py')
-rw-r--r--http_errors.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/http_errors.py b/http_errors.py
deleted file mode 100644
index bd8fbb4..0000000
--- a/http_errors.py
+++ /dev/null
@@ -1,16 +0,0 @@
-class Code2xx(Exception):
- pass
-class Code200(Code2xx):
- pass
-
-class Error4xx(Exception):
- pass
-class Error404(Error4xx):
- pass
-
-class Error5xx(Exception):
- pass
-class Error500(Error5xx):
- pass
-class Error502(Error5xx):
- pass