Why are Exceptions not Checked in .NET? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T23:49:37Zhttp://stackoverflow.com/feeds/question/124143http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net14Why are Exceptions not Checked in .NET?Scuffia2008-09-23T21:52:24Z2009-06-12T15:20:43Z
<p>I know Googling I can find an appropriate answer, but I prefer listening to your personal (and maybe technical) opinions.<br/>
<strong>What is the main reason of the difference between Java and C# in throwing exceptions?</strong><br/>
In Java the signature of a method that throws an exception has to use the "throws" keyword, while in C# you don't know in compilation time if an exception could be thrown.</p>
http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net/124173#12417310Answer by unknown (yahoo) for Why are Exceptions not Checked in .NET?unknown (yahoo)2008-09-23T21:57:22Z2008-09-23T21:57:22Z<p>The basic design philosophy of C# is that actually catching exceptions is rarely useful, whereas cleaning up resources in exceptional situations is quite important. I think it's fair to say that <code>using</code> (the IDisposable pattern) is their answer to checked exceptions. See [1] for more.</p>
<ol>
<li><a href="http://www.artima.com/intv/handcuffs.html" rel="nofollow">http://www.artima.com/intv/handcuffs.html</a></li>
</ol>
http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net/124175#12417519Answer by noah for Why are Exceptions not Checked in .NET?noah2008-09-23T21:57:26Z2008-09-23T21:57:26Z<p>Because the response to checked exceptions is almost always:</p>
<pre><code>try {
// exception throwing code
} catch(Exception e) {
// either
log.error("Error fooing bar",e);
// OR
throw new RuntimeException(e);
}
</code></pre>
<p>If you actually know that there is something you can do if a particular exception is thrown, then you can catch it and then handle it, but otherwise it's just incantations to appease the compiler.</p>
http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net/124180#1241800Answer by Lou Franco for Why are Exceptions not Checked in .NET?Lou Franco2008-09-23T21:58:31Z2008-09-23T21:58:31Z<p>I went from Java to C# because of a job change. At first, I was a little concerned about the difference, but in practice, it hasn't made a difference.</p>
<p>Maybe, it's because I come from C++, which has the exception declaration, but it's not commonly used. I write every single line of code as if it could throw -- always use using around Disposable and think about cleanup I should do in finally.</p>
<p>In retrospect the propagation of the throws declaration in Java didn't really get me anything. </p>
<p>I would like a way to say that a function definitely never throws -- I think that would be more useful.</p>
http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net/124225#1242250Answer by Armin Ronacher for Why are Exceptions not Checked in .NET?Armin Ronacher2008-09-23T22:06:51Z2008-09-23T22:06:51Z<p>Additionally to the responses that were written already, not having checked exceptions helps you in many situations a lot. Checked exceptions make generics harder to implement and if you have read the closure proposals you will notice that every single closure proposal has to work around checked exceptions in a rather ugly way.</p>
http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net/124231#1242315Answer by Constantin for Why are Exceptions not Checked in .NET?Constantin2008-09-23T22:08:30Z2008-09-23T22:08:30Z<p>By the time .NET was designed, Java had checked exceptions for quite some time and this feature was viewed by Java developers at best as <a href="http://andersnoras.com/blogs/anoras/archive/2007/07/16/look-mom-no-checked-exception.aspx" rel="nofollow">controversial</a>. Thus .NET designers <a href="http://www.artima.com/intv/handcuffs.html" rel="nofollow">chose</a> not to include it in C# language.</p>
http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net/124261#1242612Answer by Steve Morgan for Why are Exceptions not Checked in .NET?Steve Morgan2008-09-23T22:15:22Z2008-09-23T22:15:22Z<p>Interestingly, the guys at Microsoft Research have added checked exceptions to Spec#, their superset of C#.</p>
http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net/124368#1243681Answer by Andrei Rinea for Why are Exceptions not Checked in .NET?Andrei Rinea2008-09-23T22:42:48Z2008-09-23T22:42:48Z<p>I sometimes miss checked exceptions in C#/.NET.</p>
<p>I suppose besides Java no other notable platform has them. Maybe the .NET guys just went with the flow...</p>
http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net/126122#12612229Answer by Atif Aziz for Why are Exceptions not Checked in .NET?Atif Aziz2008-09-24T09:04:14Z2008-09-27T23:34:12Z<p>In the article <a href="http://www.artima.com/intv/handcuffs.html" rel="nofollow">The Trouble with Checked Exceptions</a> and in Anders Hejlsberg's (designer of the C# language) own voice, there are three main reasons for C# not supporting checked exceptions as they are found and verified in Java:</p>
<ul>
<li><p><strong>Neutral on Checked Exceptions</strong></p>
<blockquote>
<p>“C# is basically silent on the checked
exceptions issue. Once a better
solution is known—and trust me we
continue to think about it—we can go
back and actually put something in
place.”</p>
</blockquote></li>
<li><p><strong>Versioning with Checked Exceptions</strong></p>
<blockquote>
<p>“Adding a new exception to a throws
clause in a new version breaks client
code. It's like adding a method to an
interface. After you publish an
interface, it is for all practical
purposes immutable, …”</p>
<p>“It is funny how people think that the
important thing about exceptions is
handling them. That is not the
important thing about exceptions. In a
well-written application there's a
ratio of ten to one, in my opinion, of
try finally to try catch. Or in C#,
<a href="http://msdn.microsoft.com/en-us/library/aa664736.aspx" rel="nofollow"><code>using</code></a> statements, which are
like try finally.”</p>
</blockquote></li>
<li><p><strong>Scalability of Checked Exceptions</strong></p>
<blockquote>
<p>“In the small, checked exceptions are
very enticing…The trouble
begins when you start building big
systems where you're talking to four
or five different subsystems. Each
subsystem throws four to ten
exceptions. Now, each time you walk up
the ladder of aggregation, you have
this exponential hierarchy below you
of exceptions you have to deal with.
You end up having to declare 40
exceptions that you might throw.…
It just balloons out of control.”</p>
</blockquote></li>
</ul>
<p>In his article, “<a href="http://msdn.microsoft.com/en-us/vcsharp/aa336812.aspx" rel="nofollow">Why doesn't C# have exception specifications?</a>”, <a href="http://blogs.msdn.com/ansonh/" rel="nofollow">Anson Horton</a> (Visual C# Program Manager) also lists the following reasons (see the article for details on each point):</p>
<ul>
<li>Versioning</li>
<li>Productivity and code quality</li>
<li>Impracticality of having class author differentiate between
<em>checked</em> and <em>unchecked</em> exceptions</li>
<li>Difficulty of determining the correct exceptions for interfaces.</li>
</ul>
<p>It is interesting to note that C# does, nonetheless, support documentation of exceptions thrown by a given method via the <a href="http://msdn.microsoft.com/en-us/library/w1htk11d.aspx" rel="nofollow"><code><exception></code></a> tag and the compiler even takes the trouble to verify that the referenced exception type does indeed exist. There is, however, no check made at the call sites or usage of the method.</p>
<p>You may also want to look into the <a href="http://www.red-gate.com/products/exception_hunter/index.htm" rel="nofollow">Exception Hunter</a>, which is a commerical tool by <a href="http://www.red-gate.com/" rel="nofollow">Red Gate Software</a>, that uses static analysis to determine and report exceptions thrown by a method and which may potentially go uncaught:</p>
<blockquote>
<p>Exception Hunter is a new analysis
tool that finds and reports the set of
possible exceptions your functions
might throw – before you even ship.
With it, you can locate unhandled
exceptions easily and quickly, down to
the line of code that is throwing the
exceptions. Once you have the results,
you can decide which exceptions need
to be handled (with some exception
handling code) before you release your
application into the wild.</p>
</blockquote>
<p>Finally, <a href="http://mindview.net/Etc/About/about.html" rel="nofollow">Bruce Eckel</a>, author of <a href="http://www.mindview.net/Books/TIJ/" rel="nofollow">Thinking in Java</a>, has an article called, “<a href="http://www.mindview.net/Etc/Discussions/CheckedExceptions" rel="nofollow">Does Java need Checked Exceptions?</a>”, that may be worth reading up as well because the question of why checked exceptions are not there in C# usually takes root in comparisons to Java.</p>
http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net/144777#1447772Answer by DrPizza for Why are Exceptions not Checked in .NET?DrPizza2008-09-27T23:47:02Z2008-09-27T23:47:02Z<p>Fundamentally, whether an exception should be handled or not is a property of the <em>caller</em>, rather than of the function.</p>
<p>For example, in some programs there is no value in handling an IOException (consider ad hoc command-line utilities to perform data crunching; they're never going to be used by a "user", they're specialist tools used by specialist people). In some programs, there is value in handling an IOException at a point "near" to the call (perhaps if you get a FNFE for your config file you'll drop back to some defaults, or look in another location, or something of that nature). In other programs, you want it to bubble up a long way before it's handled (for example you might want it to abort until it reaches the UI, at which point it should alert the user that something has gone wrong.</p>
<p>Each of these cases is dependent on the _application, and not the <em>library</em>. And yet, with checked exceptions, it is the <em>library</em> that makes the decision. The Java IO library makes the decision that it will use checked exceptions (which strongly encourage handling that's local to the call) when in some programs a better strategy may be non-local handling, or no handling at all.</p>
<p>This shows the real flaw with checked exceptions in practice, and it's far more fundamental than the superficial (although also important) flaw that too many people will write stupid exception handlers just to make the compiler shut up. The problem I describe is an issue even when experienced, conscientious developers are writing the program.</p>
http://stackoverflow.com/questions/124143/why-are-exceptions-not-checked-in-net/987246#9872460Answer by HomieG for Why are Exceptions not Checked in .NET?HomieG2009-06-12T15:20:43Z2009-06-12T15:20:43Z<p>Anders himself answers that question in <a href="http://www.se-radio.net/podcast/2008-05/episode-97-interview-anders-hejlsberg" rel="nofollow">this episode</a> of the Software engineering radio podcast</p>