1 /* 2 WhitespaceAfter 3 tokens = LITERAL_CATCH 4 5 6 */ 7 8 package com.puppycrawl.tools.checkstyle.checks.whitespace.whitespaceafter; 9 10 public class InputWhitespaceAfterLiteralCatch { 11 public static void main(String[] args) { 12 13 try {} catch (Exception e){} 14 try {} catch(Exception e){} // violation ''catch' is not followed by whitespace' 15 } 16 }