Appearance
This rule enforces naming conventions for catch statements.
Examples of incorrect code for this rule:
try { } catch (foo) {}
Examples of correct code for this rule:
try { } catch (error) {}