4
Answers

How to handle exeception throw from a method from anohter? {Continues...}

petre ricardo

petre ricardo

15y
2.2k
1

in class A, i have a caller method P1 that called methods P2, P3 of the same class.
P2 throw two exeptions and P3 throw another exception
P1 is called by anohte method of another class. However, in P1, how should i handle the exception returned by P2, and P3?
 
 
Answers (4)
0
Kirtan Patel

Kirtan Patel

NA 35k 2.8m 15y
Hi Friend ,

Here is Code Sample how you will handle Error

dont forget to mark "Do you like answer" please :) it will give me some credits :)

class Class1

    {

 

 

        public void P1()

        {

            try

            {

                P2();

                P3();

            }

            catch(Exception ex)

            {

               MessageBox.Show(ex.Message.ToString());

            }

        }

 

        public void P2()

        {

 

 

        }

 

        public void P3()

        {

 

        }

    }

Accepted
0
petre ricardo

petre ricardo

NA 219 0 15y

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
Roei Bar

Roei Bar

NA 7.8k 0 15y
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
Master  Billa

Master Billa

NA 2.7k 0 15y
Hi


I think there is no issues, you can throw in base method and catch in top level and make as user friendly message  and then display to user.

http://www.codeproject.com/KB/cs/csmverrorhandling.aspx

thank you