Java: Meaning of catch (final SomeException e)?
It basically means: Catch “SomeExceptionType” into the variable “e” with the promise that we won’t assign a different exception to “e” during the processing of the exception. Mostly this is overkill, as if I’m catching an exception into a temporary variable name (e only is valid for the exception handling block), I don’t have to … Read more