Spring catches checked exceptions and throws as runtime exception.Why so? I read that some exceptions in
java like IO exception are so difficult to catch?If so then why normally in core java one is forced to catch checked exceptions and not in Spring?
thanks..