How do I catch the exception in windows application in c#?
- by user291169
Where should we catch exception
• In Layer Boundary (UI-BLL & BLL-DAL)
• In that methods where there is no interaction between Layers only some business logic present
How do I write exception in Save/Delete where some DML statement executing?
• What should I write in DAL end?
• What should I write in BLL end?
• What should I write in UI end?
In Get/Load method How do we handle exception
• What should I write in BLL end?
• What should I write in UI end?
Should I catch System exception?