What exactly is eating an exception? Is it when there's nothing in the catch block or when you don't log the exception?
I understand that this is eating an exception.
try {
//exception code
} catch (Exception e) {
}
However, what about this?
try {
//exception code
} catch (Exception e) {
System.out.println("Exception Thrown");
}