diff options
Diffstat (limited to 'http_errors.py')
-rw-r--r-- | http_errors.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/http_errors.py b/http_errors.py index 975e0d4..bd8fbb4 100644 --- a/http_errors.py +++ b/http_errors.py @@ -1,3 +1,8 @@ +class Code2xx(Exception): + pass +class Code200(Code2xx): + pass + class Error4xx(Exception): pass class Error404(Error4xx): |