I\'ve gotten in the habit of using a general catch statement and I handle those exceptions in a general manner. Is this bad practice? If so, how do I know which specific exc
IMO - don't catch any exception unless you plan to add value to it and/or it can be handled in that method only.
Please do have a common exception handler which handles all un-handled exceptions.
HTH.