Background
I have a component that provides certain CRM services - specificCRM. I have a specificCRMAdapter which implements my IGeneralCRM interface.
Another component generalCRM exposes CRM functionality through IGeneralCRM and uses Spring.Net to inject the specificCRMAdapter to provide such funtionality.
Question
I want to be able to catch an exception if the specificCRM component fails. Should I implement Spring.Net AOP Throws advice to accomplish this or am I over engineering the problem because all I need to do is merely catch the exception.
Are there any benefits one way or the other.
Thanks, Confused.