0
hi,
I want ot take master billa's answer further to clear out few issues:
1.
In the article the person creates a method called IsCritical() to check the throwed exception type. Instead of creating a new method called "IsCritical()" cant we write the super type exception (therefore from the BLL) it throws the super type exception that we can drill down to find out the inner type in the Controller or in the VIew of MVC?
2.
When the person uses a sperepate method IsCritical() to check the inner type of the exception, the class consist of so many error handling methods (in my case) .... becuase i already have two methods that throws exceptions and one method that decides what exception to throw and now adding a another to check the inner type makes the class lengthy, is this a good practise?
cheers
0
well my friend, there are many ways to handle exceptions.
my way was always to handle exceptions in their scope. meaning that you have a try catch on the block you handle, and never throw the exception up to the higher level unless its a basic error that is a must be handled on application scope since without that information you cant continue to next steps
0