summaryrefslogtreecommitdiffstats
path: root/ipsilon/util/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipsilon/util/errors.py')
-rwxr-xr-xipsilon/util/errors.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/ipsilon/util/errors.py b/ipsilon/util/errors.py
index 3d7ea28..2f3cc3d 100755
--- a/ipsilon/util/errors.py
+++ b/ipsilon/util/errors.py
@@ -54,3 +54,10 @@ class Error_401(Errors):
def handler(self, status, message, traceback, version):
return self._error_template('unauthorized.html',
title='Unauthorized', message=message)
+
+
+class Error_404(Errors):
+
+ def handler(self, status, message, traceback, version):
+ return self._error_template('notfound.html',
+ title='Not Found', message=message)