I imagine if you have SQL injection holes hiding the exception wont actually matter.
Oh, but it will. It can make the difference between the hole being found and exploited, and it not being found and exploited :)
Security through obscurity as the only security measure is dangerous. But it's a good thing to have as an additional one.
Exceptions and error messages
Can give an attacker information about how the code is built (e.g. library functions used - catastrophic if one of them can be exploited)
Can give an attacker information about the underlying system in general (OS / Platform, server, frameworks used, versions....)
Can give an attacker information about the site's path structure and file locations. While not dangerous in itself, this is valuable information when exploiting a directory traversal security hole for example.
This is ample reason to hide this information from the public at all times.