📝️ What PITFALLS when code-snnipet doesn’t throw a checked-exception?
✅ We can specify it might throws a checked-exception
❌ However, we can NOT wrap it in a try-catch block (Unreachable catch-block)
📝️ What are the PITFALLS when Overriding Methods with Exceptions?
✅ Having fewer exceptions is ok
❌ Adding new exceptions (✅Unchecked-exceptions is ok (redundant))
📝️ What are the three ways of Printing an Exception?