From 5c8d5866d9867a0796f849d44abfeb2f03888be5 Mon Sep 17 00:00:00 2001 From: dantleech Date: Wed, 19 Nov 2014 09:44:04 +0100 Subject: [PATCH] Specify that caught exceptions should be assigned to a variable named `$e` 320 out of 372 catches use `$e`. --- contributing/code/standards.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contributing/code/standards.rst b/contributing/code/standards.rst index a2720e991df..764c15382f6 100644 --- a/contributing/code/standards.rst +++ b/contributing/code/standards.rst @@ -141,6 +141,8 @@ Naming Conventions * Don't forget to look at the more verbose :doc:`conventions` document for more subjective naming considerations. + +* Caught exceptions should assigned to a variable named `$e`. .. _service-naming-conventions: