Example
public class
ClassA
{
public void
test () {
try
{
}
catch
(Exceptions e) {
}
finally
{
return
;
}
}
}
Solution
Avoid returning from the
finally
block
public class
ClassA
{
public void
test () {
try
{
}
catch
(Exceptions e) {
}
finally
{
}
}
}