Polish caught exception names

Prefer `ex` over `e`.
This commit is contained in:
Phillip Webb
2018-05-03 12:50:16 -07:00
parent 41efea51a7
commit 2d70a7ae5e
10 changed files with 13 additions and 13 deletions

View File

@@ -158,7 +158,7 @@ public abstract class AbstractApplicationContextRunnerTests<T extends AbstractAp
context.getClassLoader());
fail("Should have thrown a ClassNotFoundException");
}
catch (ClassNotFoundException e) {
catch (ClassNotFoundException ex) {
// expected
}
});