Are there any keywords or special syntax of code that if I look at it, I'll know that here unchecked exception is being used or a checked exception is being used?
From reading previous posts that asked this question before, it seems to me that the only way to know if it's a check or unchecked is to see if the exception is extending Exception or RuntimeException.
Is that really the only way to know? Because I thought the syntax for writting unchecked and checked exceptions were supposed to be different too, but I'm not sure what to look for.