aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java')
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java
deleted file mode 100644
index 47388bef2..000000000
--- a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.puppycrawl.tools.checkstyle.checks.naming;
-
-import java.io.FileNotFoundException;
-import java.io.IOException;
-import java.sql.SQLException;
-
-public class InputCatchParameter {
-
- void foo1() {
- try {
-
- }
- catch (Exception ex) {
-
- }
- }
-
- void foo2() {
- try {
-
- }
- catch (NullPointerException | IllegalArgumentException ex) {
- // just to check how the ParentName's option 'skipCahcthParameter' deals with catching
- // multiple exception types and
- }
- }
-}