Example
public class
ClassA
{
public void
test () {
try
{
int
i = 0;
}
catch
(Exceptions e) {
}
}
}
Solution
Avoid having an
catch
block. Do something with the exception.