Pattern: Malformed space after catch
Issue: -
Checks that there is exactly one space (blank) after the catch
keyword and before the opening parenthesis.
Examples of violations:
try { } catch(Exception e) { } // violation
try { } catch (Exception e) { } // violation