Throw Exceptions with custom stack trace. - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T05:37:28Zhttp://stackoverflow.com/feeds/question/912420http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/912420/throw-exceptions-with-custom-stack-trace1Throw Exceptions with custom stack trace.Joseph Daigle2009-05-26T19:59:55Z2009-05-26T21:07:11Z
<p>Is it possible to throw an exception (could be any exception) with a customized stack trace?</p>
<p>As a concrete example: lets say I have a set of some small static utility methods which might throw exceptions. However I would like the exception to appear to have originated from the previous method instead of the utility method (I want to ignore the 1st frame of the trace). </p>
http://stackoverflow.com/questions/912420/throw-exceptions-with-custom-stack-trace/912444#912444-1Answer by shahkalpesh for Throw Exceptions with custom stack trace.shahkalpesh2009-05-26T20:07:38Z2009-05-26T20:12:28Z<p>Catch it in the outer method & create a new exception and throw it.</p>
<pre>
<code>
try
{
Class.StaticMethod();
}
catch (Exception e)
{
throw new Exception("Some error occurred");
}
</code>
</pre>
http://stackoverflow.com/questions/912420/throw-exceptions-with-custom-stack-trace/912449#9124490Answer by James Cadd for Throw Exceptions with custom stack trace.James Cadd2009-05-26T20:09:05Z2009-05-26T20:09:05Z<p>The StackTrace property is virtual - create your own derived Exception class and have the property return whatever you want.</p>
http://stackoverflow.com/questions/912420/throw-exceptions-with-custom-stack-trace/912457#9124572Answer by Noldorin for Throw Exceptions with custom stack trace.Noldorin2009-05-26T20:09:51Z2009-05-26T21:07:11Z<p>Messing around with the stack trace really doesn't sound like a good idea, even if it is possible (I'm doubtful of that). Tell me, why would you want to do that anyway? The .NET framework itself (the BCL) often uses static utility methods to throw exceptions, in the way that you suggest (<code>ThrowHelper</code> is its name in at least some parts of the framework), and it certainly does hide anything in the stack trace.</p>
<p>Here's an example stack trace from a test I just ran:</p>
<pre>
at System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
at System.ThrowHelper.ThrowArgumentOutOfRangeException()
at System.Collections.Generic.List`1.get_Item(Int32 index)
at HelloWorld.Program.Main(String[] args) in C:\...\Program.cs:line 23
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
</pre>
<p>As you can see, the BCL uses the <code>ThrowArgumentOutOfRangeException</code> method, and it's clearly visible in the stack trace. If you want to mark the helper method with the <code>DebuggerNonUserCode</code> attribute, then that would seem fair enough to me (though it's not done in the BCL).</p>