I am developing enterprise-like project by using DDD pattern. I have following projects in my C# solution:
Domain model - DLL project
WebUI - ASP.NET MVC3 project
DesktopUI - WPF project
DAL - Entity Framework Code First
Persistance - SQL Server Database
This project is not large but I am trying to use all good practices of enterprise applications.
What I'd like to define now is exception strategy but I am not sure how to approach that. I should probably use Enterprise Library Exception Handling and Logging Blocks but I am not sure how to fit that into the picture. Some concrete scenarios I am trying to resolve in my head are following:
If new Entity is created by the user in the WPF application, and Save button is clicked how should error be reported and logged in case an exception occurs at different levels (eg. entity is not properly created according to domain rules, or there was an error trying to persist new object to database)
User tries to retrieve unknown entity from database (eg. from WebUI by specifying unknown entity Id in URL)
I understand I can define custom exceptions but I am not quite sure where and how. Should they be defined per each layer? I know there is wrapping exception practice but again not quite sure how to best use that pattern.
Also should I create one custom exception for each error in some layer (eg. UserAlreadyExistInDatabaseException for trying to save two users with same email, and UnknownUserDatabaseException if trying to get unknown user from DB) or should I have one exception type that handles multiple layer errors (eg. DatabaseException, and then differentiate errors with custom property or Exception.Message property).