Better exceptions-only completion in catch

This commit is contained in:
Roman Shevchenko
2011-03-10 21:34:36 +01:00
parent 7b05a6c4a9
commit ec147dd31d
16 changed files with 75 additions and 55 deletions
@@ -0,0 +1,8 @@
class AbcdClass {}
class AbcdException extends Throwable {}
class Foo {
{
try { } catch (final AbcdException<caret>)
}
}