Java: Why You See the "Unhandled exception" Warning
Sometimes you would see such warning msg like the above in your Intellij, this means you need to handle the exception: add exception to method signature, or surround with try/catch. But why you can throw some exceptions without these handling, and why you can't throw some?
The