vote up 14 vote down star
2

I am calling, through reflection, a method which may cause an exception. How can I pass the exception to my caller without the wrapper reflection puts around it? I am rethrowing the InnerException, but this destroys the stack trace. Example code:

    public void test1()
    {
        // Throw an exception for testing purposes
        throw new ArgumentException("test1");
    }

    void test2()
    {
        try
        {
            MethodInfo mi = typeof(Program).GetMethod("test1");
            mi.Invoke(this, null);
        }
        catch (TargetInvocationException tiex)
        {
            // Throw the new exception
            throw tiex.InnerException;
        }
    }
flag

5 Answers

vote up 5 vote down check

Even more reflection...

        catch (TargetInvocationException tiex)
        {
            // Get the _remoteStackTraceString of the Exception class
            FieldInfo remoteStackTraceString = typeof(Exception)
                .GetField("_remoteStackTraceString",
                    BindingFlags.Instance | BindingFlags.NonPublic); // MS.Net

            if (remoteStackTraceString == null)
                remoteStackTraceString = typeof(Exception)
                .GetField("remote_stack_trace",
                    BindingFlags.Instance | BindingFlags.NonPublic); // Mono

            // Set the InnerException._remoteStackTraceString
            // to the current InnerException.StackTrace
            remoteStackTraceString.SetValue(tiex.InnerException,
                tiex.InnerException.StackTrace + Environment.NewLine);

            // Throw the new exception
            throw tiex.InnerException;
        }

Keep in mind that this may break at any time, as private fields are not part of API. See further discussion on Mono bugzilla.

link|flag
7  
This is a really, really bad idea, as it depends on internal undocumented details about framework classes. – Earwicker Dec 17 '08 at 22:39
@Earwicker: +9000 – Anton Tykhyy May 12 at 18:29
@Earwicker: +1 this is a reaaaallly bad idea – Richard Szalay May 15 at 7:05
vote up 9 vote down

I think your best bet would be to just do:

throw;

And then extract the innerexception later.

link|flag
2  
Or remove the try/catch altogether. – Earwicker Dec 17 '08 at 22:41
@Earwicker. Removing the try/catch is not a good solution in general as it ignores cases where cleanup code is required prior to propagating the exception up the call stack. – Jordan Nov 2 at 20:43
vote up 4 vote down

First: don't loose the TargetInvocationException - it's valuable information when you will want to debug things.
Second: Wrap the TIE as InnerException in your own exception type and put an OriginalException property that links to what you need (and keep the entire callstack intact).
Third: Let the TIE bubble out of your method.

link|flag
vote up 0 vote down

I tried the accepted solution posted above, but it did not work for me. If I look inside the exception, the StackTrace is correct, but Microsoft Visual Studio 2008 does not display the correct Stack Trace in the "Call Stack" tab.

It would be nice for MSVS to take me to where the original exception occured, and display the correct stack trace in the Call Stack tab. Did the previous solution become out-dated?

link|flag
The previous solution is a (very) bad hack. Please don't use it. And yes, it's a distinct possibility that it did break. – Matthew Scharley Jun 26 at 1:29
vote up 0 vote down
public static class ExceptionHelper
{
    private static Action<Exception> _preserveInternalException;

    static ExceptionHelper()
    {
        MethodInfo preserveStackTrace = typeof( Exception ).GetMethod( "InternalPreserveStackTrace", BindingFlags.Instance | BindingFlags.NonPublic );
        _preserveInternalException = (Action<Exception>)Delegate.CreateDelegate( typeof( Action<Exception> ), preserveStackTrace );            
    }

    public static void PreserveStackTrace( this Exception ex )
    {
        _preserveInternalException( ex );
    }
}

Call the extension method on your exception before you throw it, it will preserve the original stack trace.

link|flag

Your Answer

Get an OpenID
or

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