I'm aware checked exceptions have to be handled or specified, but unchecked exceptions are optional.
If for some reason I can reasonably expect an unchecked exception to occur in a method, should I add it to the throws specification? Or should I keep the specification as short as possible?
That is a design decision. Normally you wouldn't do that. But if you think it is crucial for the user of your code to catch an
Exception
, then it is a way to hint him doing that. Another way would be to just add it to the documentation, and explain why it is important to catch theException
.