Adding extra information to a custom exception - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:26:27Z http://stackoverflow.com/feeds/question/48773 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/48773/adding-extra-information-to-a-custom-exception 1 Adding extra information to a custom exception SuperJason 2008-09-07T20:50:00Z 2008-09-30T23:59:39Z <p>I've created a custom exception for a very specific problem that can go wrong. I receive data from another system, and I raise the exception if it bombs while trying to parse that data. In my custom exception, I added a field called "ResponseData", so I can track exactly what my code couldn't handle.</p> <p>In custom exceptions such as this one, should that extra response data go into the exception "message"? If it goes there, the message could be huge. I kind of want it there because I'm using Elmah, and that's how I can get at that data.</p> <p>So the question is either: - How can I get Elmah to record extra information from a field in a custom exception OR - Should extra exception details go into the "message" property?</p> http://stackoverflow.com/questions/48773/adding-extra-information-to-a-custom-exception/48785#48785 0 Answer by Danimal for Adding extra information to a custom exception Danimal 2008-09-07T21:03:26Z 2008-09-07T21:03:26Z <p>I don't understand the question -- you're extending System.Exception, and you already added the Elmah field. That's where it belongs -- as a public property of the exception itself.</p> http://stackoverflow.com/questions/48773/adding-extra-information-to-a-custom-exception/48789#48789 0 Answer by SuperJason for Adding extra information to a custom exception SuperJason 2008-09-07T21:07:27Z 2008-09-07T21:07:27Z <p>This is elmah: <a href="http://code.google.com/p/elmah/" rel="nofollow">elmah</a></p> http://stackoverflow.com/questions/48773/adding-extra-information-to-a-custom-exception/48792#48792 3 Answer by Sören Kuklau for Adding extra information to a custom exception Sören Kuklau 2008-09-07T21:14:13Z 2008-09-07T21:14:13Z <p>You shouldn't fill <code>.Message</code> with debug information, but rather with a concise, helpful piece of text.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.exception.message.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.exception.message.aspx</a></p> <blockquote> <p><strong>The text of Message should completely describe the error and should, when possible, explain how to correct it.</strong> The value of the Message property is included in the information returned by ToString.</p> <p>The Message property is set only when creating an Exception. If no message was supplied to the constructor for the current instance, the system supplies a default message that is formatted using the current system culture.</p> <p>[..]</p> <p>Notes to Inheritors:</p> <p>The Message property is overridden in classes that require control over message content or format. Application code typically accesses this property when it needs to display information about an exception that has been caught.</p> <p>The error message should be localized.</p> </blockquote> <p>Response data does not qualify as a description.</p> <p>Not being familiar with elmah, I can't tell you how to extend the <code>Exception</code> class while using it. Does elmah implement its own subclass to <code>Exception</code>? Or an interface? Can you subclass it yourself?</p> http://stackoverflow.com/questions/48773/adding-extra-information-to-a-custom-exception/48801#48801 0 Answer by George Mauer for Adding extra information to a custom exception George Mauer 2008-09-07T21:21:59Z 2008-09-07T21:21:59Z <p>I don't fully understand the question but you seem to be asking what to do with additional exception data, if that is not your question feel free to ignore this.</p> <p>I think an important question to ask is what exactly is the exception message for? It is not for knowing where the exception came from, the stack trace is for that; it is not to encapsulate an exception in a more general one, that should be done with the InnerException field; in the case where your exception is only raised from a particular place in your code it isn't even for describing what kind of error you had - thats what the type of the exception is for.</p> <p>Generally I use the message field to provide simple, human-readable tips that a programmer that is not me, seeing this error for the first time can use to gain an understanding of the underlying system. I consider the message field to be appropriate for a short (one sentence) explanation, a hint as to how this error is frequently raised, or a reference to further reading.</p> <p>So, as far as I understand your question, I think that the best way to store this 'additional information' that is received from another system is as an InnerException. I don't know Elmah, but if it's worth its salt it will check for InnerExceptions and store them.</p> http://stackoverflow.com/questions/48773/adding-extra-information-to-a-custom-exception/48802#48802 0 Answer by SuperJason for Adding extra information to a custom exception SuperJason 2008-09-07T21:22:59Z 2008-09-07T21:22:59Z <p>Elmah is a http module that records unhandled exceptions.</p> <p>I guess it's just a limitation of Elmah, since it doesn't store custom fields. I guess I'll have to ask those guys. I have the extra field in there for the response data, but Elmah does not store it.</p> http://stackoverflow.com/questions/48773/adding-extra-information-to-a-custom-exception/155606#155606 1 Answer by Atif Aziz for Adding extra information to a custom exception Atif Aziz 2008-09-30T23:43:45Z 2008-09-30T23:43:45Z <blockquote> <p>In custom exceptions such as this one, should that extra response data go into the exception "message"?</p> </blockquote> <p>No, as <a href="http://stackoverflow.com/questions/48773/adding-extra-information-to-a-custom-exception#48792">Sören already pointed out</a>. However, your exception type could override <code>ToString</code> and sensibly add the response data information there. This is a perfectly normal practice followed by many of the exception types in the BCL (Base Class Library) so you will not find yourself swimming against the tide. For example, have a look at the <a href="http://tinyurl.com/rotor-filenotfound-tostring" rel="nofollow">System.IO.FileNotFoundException.ToString</a> implementation in <a href="http://research.microsoft.com/sscli/" rel="nofollow">SSCLI (Rotor)</a>:</p> <pre><code>public override String ToString() { String s = GetType().FullName + ": " + Message; if (_fileName != null &amp;&amp; _fileName.Length != 0) s += Environment.NewLine + String.Format(Environment.GetResourceString("IO.FileName_Name"), _fileName); if (InnerException != null) s = s + " ---&gt; " + InnerException.ToString(); if (StackTrace != null) s += Environment.NewLine + StackTrace; try { if(FusionLog!=null) { if (s==null) s=" "; s+=Environment.NewLine; s+=Environment.NewLine; s+="Fusion log follows: "; s+=Environment.NewLine; s+=FusionLog; } } catch(SecurityException) { } return s; } </code></pre> <p>As you can see, it appends the content of <a href="http://msdn.microsoft.com/en-us/library/system.io.filenotfoundexception.fusionlog.aspx" rel="nofollow">FusionLog</a> property, which represent <em>extra</em> information in case of assembly load failures. </p> <blockquote> <p>How can I get Elmah to record extra information from a field in a custom exception</p> </blockquote> <p><a href="http://code.google.com/p/elmah/" rel="nofollow">ELMAH</a> stores the result of calling <code>ToString</code> on an exception as the details of the error so if you have <code>ToString</code> implemented as prescribed, the information would get logged without further work. The only issue is that the logged detail will be <em>unstructured</em> text.</p> http://stackoverflow.com/questions/48773/adding-extra-information-to-a-custom-exception/155651#155651 1 Answer by Gabriel Isenberg for Adding extra information to a custom exception Gabriel Isenberg 2008-09-30T23:59:39Z 2008-09-30T23:59:39Z <p>The Exception class contains a dictionary (named Data, I believe) that you can use to associate custom data with a vanilla exception. </p>