def exception_test(request):
-    raise Exception('Exception test')
\ No newline at end of file
+    msg = request.GET.get('msg')
+    if msg:
+        raise Exception('Exception test: %s' % msg)
+    else:
+        raise Exception('Exception test')
\ No newline at end of file