Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
internal static string ReadCSVFile(string filePath)
{
    try
    {
        ...
        ...
    }
    catch(FileNotFoundException ex)
    {
        throw ex;
    }
    catch(Exception ex)
    {
        throw ex;
    }
    finally
    {
        ...
    }
}


//Reading File Contents

public void ReadFile()
{
    try
    {
        ...
        ReadCSVFile(filePath);
        ...
    }
    catch(FileNotFoundException ex)
    {
        ...
    }
    catch(Exception ex)
    {
        ...
    }
}

Here in the above code sample, I have two functions ReadFile and ReadCSVFile.
In the ReadCSVFile, I get an exception of type FileNotFoundExceptioon, which gets caught in the catch(FileNotFoundException) block. But when I throw this exception to be caught in the catch(FileNotFoundException) of the ReadFile() Function, it gets caught in the catch(Exception) block rather than catch(FileNotFoundException). Moreover, while debugging, the value of the ex says as Object Not Initialized. How can I throw the exception from the called function to the caller function's catch block without losing the inner exception or atleast the exception message?

share|improve this question
as you use the same exception local object, are you sure the inner exception is of type FileNotFoundException? – NirMH Aug 11 '11 at 10:28
2  
possible duplicate of .NET - Throwing Exceptions best practices – Chris Aug 11 '11 at 10:31
Not a duplicate, but a question lacking informatio to show why it is no duplicate :) – PVitt Aug 11 '11 at 10:37

5 Answers

You have to use throw; instead of throw ex;:

internal static string ReadCSVFile(string filePath)
{
    try
    {
        ...
        ...
    }
    catch(FileNotFoundException ex)
    {
        throw;
    }
    catch(Exception ex)
    {
        throw;
    }
    finally
    {
        ...
    }
}

Besides that, if you do nothing else in your catch block than rethrowing you do not need the catch block at all:

internal static string ReadCSVFile(string filePath)
{
    try
    {
        ...
        ...
    }
    finally
    {
        ...
    }
}

Implement the catch block only when you want to add additional information to the exception by throw a new exception with the caught one as inner exception or when you want to handle the exeption. You do not have to implement a catch block in every method where an exception can bubble through.

share|improve this answer
I tried using only throw but the result remained the same. Moreover, I am actually attaching a custom message to the exception and then throwing it. – Anubhav Ranjan Aug 11 '11 at 10:33
Then you have to throw a new exception with the custom message and the caught exception as inner exception: catch(Exception exc) { throw new MessageException("Message", exc); } – PVitt Aug 11 '11 at 10:35

You should replace

throw ex;

by

throw;
share|improve this answer
I tried, but no help. I still get ObjectNotInitialized in the Caller's catch block for Exception object. – Anubhav Ranjan Aug 11 '11 at 10:34
This might be an other exception? – sll Aug 11 '11 at 10:51

Just use throw in the called function. Dont overload catch blocks with multiple exception types. Let the caller take care of that.

share|improve this answer

In the called function just use throw like this

 try
 {
   //you code
 }
 catch
 {
     throw;
}

Now, if the exception arise here then this will be caught by the caller function .

share|improve this answer

Your code works fine here, Check here http://ideone.com/jOlYQ

share|improve this answer
Is there any difference if the code snippet belongs to a web service rather than a simple console code??? – Anubhav Ranjan Aug 11 '11 at 10:49
There should not be. A webservice is again a serivice which is hosted in some container and that could be another console app though it doesnth have an visually console represented to user. So its basically C# and nope. – zenwalker Aug 12 '11 at 2:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.