I'm investigating a stack trace, and I came accross this output:

Server stack trace: 
   ...
   at MyProject.Data.Notifications.NotificationCache.InitialisedCache() in NotificationCache.cs: line 72
   at System.Lazy`1.CreateValue()

Exception rethrown at [0]: 
   at System.Lazy`1.get_Value()
   at MyProject.Data.Notifications.NotificationCache.AddItemToCache(NotificationDto dto) in NotificationCache.cs: line 82
bla bla bla

Could somebody please explain what the Exception rethrown at [0]: means and show some simple scenario how to replicate it? I tried to replicate it via try/catch/throw, try/catch ex/throw ex etc but I could not.

link|improve this question
1  
Can you post the lines around line 82 and line 72 from NotificationCache.cs? – Scott Chamberlain Nov 10 '11 at 17:38
That is just an example, it is not important. I would like to undestand when I get Exception rethrown at [0]: what is going on and why it is there? I suspect it might have something to with async calling but I might be wrong. In this particular case, I found the source code of the private method Lazy<T>.CreateValue typedescriptor.net/browse/members/… but I'm not sure why it prints Exception rethrown at [0]: and my simple console application example with rethrowing is not doing it. – xhafan Nov 10 '11 at 17:46
Yes, but line 82 is where the re-throw is happening. Can you please post just around line 82 in your question and identify it so we don't need to download the code and count the lines. (also we don't know if you added or removed any so the count could be off) – Scott Chamberlain Nov 10 '11 at 18:07
feedback

1 Answer

up vote 2 down vote accepted

Lazy<T>.CreateValue calls Exception.PrepForRemoting(), which is where the "Exception rethrown at [0]" bit gets added. This is a bit of an odd design choice on the author's part, but presumably he was using it as a way to get the "split" stack trace that would allow you to see both the code that caused the exception and the code that called it, despite the fact that the former is invoked via a delegate.

link|improve this answer
great! I found the code which is simply adding a string into the stack trace: typedescriptor.net/name/members/… – xhafan Nov 11 '11 at 10:36
feedback

Your Answer

 
or
required, but never shown

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