22

By someone who reviewed my code. "Put a null check in the catch block for the exception....cuz some times exception itself might be null..."
And by that he/she means,

catch (Exception e){
if (e != null) {....}
}

Comments
Add Comment