C# - Why implement standard exception constructors? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T19:09:32Z http://stackoverflow.com/feeds/question/931533 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/931533/c-why-implement-standard-exception-constructors 4 C# - Why implement standard exception constructors? Alexis 2009-05-31T07:10:31Z 2009-05-31T08:09:50Z <p>From MSDN, code analysis warning CA1032:<pre> Exception types must implement the following constructors: <ul> <li>public NewException() <li>public NewException(string) <li>public NewException(string, Exception) <li>protected or private NewException(SerializationInfo, StreamingContext)</ul> </pre> I understand the purpose behind the serialization constructor, but is the rationale behind "requiring" the others? Why shouldn't I just define whatever constructors make sense for usage of my exception? What if I never want to throw MyException without passing in a message- why should I define a parameterless constructor? What if I want MyException to have an int property and I only want constructors that initialize that property?</p> http://stackoverflow.com/questions/931533/c-why-implement-standard-exception-constructors/931534#931534 0 Answer by mquander for C# - Why implement standard exception constructors? mquander 2009-05-31T07:14:40Z 2009-05-31T07:14:40Z <p>Well, the constructor that takes an inner exception is pretty much necessary to make a custom exception properly usable. Without it, if someone caught your exception, they couldn't fire off a more descriptive or appropriate exception while preserving your original one (and the information it carries, like the stack trace.)</p> http://stackoverflow.com/questions/931533/c-why-implement-standard-exception-constructors/931535#931535 5 Answer by Matthew Flaschen for C# - Why implement standard exception constructors? Matthew Flaschen 2009-05-31T07:14:50Z 2009-05-31T07:14:50Z <p>This is a warning, not a requirement. It's basically <a href="http://en.wikipedia.org/wiki/Principle%5Fof%5Fleast%5Fastonishment" rel="nofollow">principle of least surprise</a>. Providing all 4 makes it easier for people used to "regular" C# exceptions to use yours. If you have a good reason to ignore the guideline, do so. But it will make your class a little less intuitive.</p> http://stackoverflow.com/questions/931533/c-why-implement-standard-exception-constructors/931538#931538 0 Answer by Earwicker for C# - Why implement standard exception constructors? Earwicker 2009-05-31T07:16:42Z 2009-05-31T07:16:42Z <p>The parameterless and Serialization constructors are used by generic "exception routing" code that needs to move exceptions around between domains (e.g. across the internet between a service and a client).</p> <p>The one that takes another <code>Exception</code> is so that it is possible to chain all exceptions via the <code>InnerException</code> property.</p> <p>Finally, there's the one that takes a message string, which helps to make use of exceptions reasonably consistent.</p> http://stackoverflow.com/questions/931533/c-why-implement-standard-exception-constructors/931555#931555 4 Answer by Fredrik Mörk for C# - Why implement standard exception constructors? Fredrik Mörk 2009-05-31T07:29:24Z 2009-05-31T07:29:24Z <p>You have gotten some good answers. I just want to add that providing these extra constructors does not necessarily require a lot of coding. Since they are already implemented in the base class, you can simply let that one do the work:</p> <pre><code>public class MyCustomException : Exception { public MyCustomException() : base() { } public MyCustomException(string message) : base(message) { } public MyCustomException(string message, Exception innerException) : base(message, innerException) { } // and so on... } </code></pre> <p>So you will only need to implement code where the behaviour of your exception deviates from that of the base class.</p> http://stackoverflow.com/questions/931533/c-why-implement-standard-exception-constructors/931621#931621 2 Answer by jrista for C# - Why implement standard exception constructors? jrista 2009-05-31T08:09:50Z 2009-05-31T08:09:50Z <p>Implementing the standard exception constructors allow people to use your exception in a standard, familiar way that is built into all existing .NET exceptions. The first three can be optional, if for some reason you don't want one of them to be used (although why you would want that I couldn't fathom.) However, the last one is the deserialization constructor, and if you wish your exception to be supported in any kind of distributed environment (.NET Remoting, ASP.NET Web Services, WCF, etc.), then its is pretty much essential. </p> <p>Without a deserialization constructor and the [Serializable] attribute, your exceptions won't function in a distributed environment, and could possibly cause other problems. Given that, and the aspect of familiarity to well-versed C# developers, its best to implement at least the 4 standard exception constructors, and mark your exceptions with [Serializable].</p>