<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Chris Brumme - How about a type-specific try-catch mechanism for Intellisense?</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Blogs/TheChannel9Team/Chris-Brumme-How-about-a-type-specific-try-catch-mechanism-for-Intellisense/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 - Chris Brumme - How about a type-specific try-catch mechanism for Intellisense?</title>
		<link></link>
	</image>
	<description>Chris Brumme, an architect on the CLR team, talks about the CLR exception model.</description>
	<link></link>
	<language>en</language>
	<pubDate>Thu, 23 May 2013 14:57:20 GMT</pubDate>
	<lastBuildDate>Thu, 23 May 2013 14:57:20 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Chris Brumme - How about a type-specific try-catch mechanism for Intellisense?</title>
		<description>
			<![CDATA[I think this is a thing that third-party developers could step up and tackle (well, maybe not the intellisense bits, but who knows - VSIP seems pretty extensive...).&nbsp; It would be just like the new permcalc tool we heard about - walk through the MSIL looking
 for throw instructions then trace back down to see the type of the object they threw.&nbsp; It would only get tricky if the code was doing something strange like create an exception and then throw it later on inside a loop or something.&nbsp; Tricky at parts, but extremely
 doable.&nbsp; And once we can query a method to see what it throws, then we could just use reflection to blast through all the public and protected members of the framework and get a list of what everything throws for sure.&nbsp; Hey, we could even spit the list out
 in XML! =P<p>posted by Sk4rlath</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/TheChannel9Team/Chris-Brumme-How-about-a-type-specific-try-catch-mechanism-for-Intellisense#c632243181880000000</link>
		<pubDate>Thu, 01 Jul 2004 22:36:28 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/TheChannel9Team/Chris-Brumme-How-about-a-type-specific-try-catch-mechanism-for-Intellisense#c632243181880000000</guid>
		<dc:creator>Sk4rlath</dc:creator>
	</item>
	<item>
		<title>Re: Chris Brumme - How about a type-specific try-catch mechanism for Intellisense?</title>
		<description>
			<![CDATA[I&nbsp;found out&nbsp;when using java (long time ago) that&nbsp;type-specific exceptions were a bit an overkill specially when you have to follow guidelines and implement an specific design. I end up using the &quot;throws&quot; keyword everywhere and only taking care of exceptions
 that were expected from the design itself.<br>
I must say that i do not miss it when using .NET at all.<p>posted by ErickS</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/TheChannel9Team/Chris-Brumme-How-about-a-type-specific-try-catch-mechanism-for-Intellisense#c632244484790000000</link>
		<pubDate>Sat, 03 Jul 2004 10:47:59 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/TheChannel9Team/Chris-Brumme-How-about-a-type-specific-try-catch-mechanism-for-Intellisense#c632244484790000000</guid>
		<dc:creator>ErickS</dc:creator>
	</item>
	<item>
		<title>Re: Chris Brumme - How about a type-specific try-catch mechanism for Intellisense?</title>
		<description>
			<![CDATA[
<p>I haven't use Java however I can see that checked exceptions might be a bit too much of a versioning hassle.&nbsp; OTOH the concept does appeal to my meticulous side.&nbsp; I think the concept of a non-enforced checked exception (perhaps a better name is &quot;documented
 exceptions&quot;) is a good idea.&nbsp; I have run into exceptions in shipping code that weren't documented in the MSDN docs!&nbsp; So even though I thought I was handling everything, I wasn't. And the real drag of it all was that it wasn't a fatal exception.&nbsp; It was something,
 that if I had caught it I could have put a message to the user that they needed to re-install/repair in order to use a particular feature. I am also intrigued by the concept of slicing exceptions in a different fashion besides inheritance hierarchy. I have
 always thought the .NET exception hierarchy could be better.&nbsp; There are some exceptions that inherit directly from System.Exception. Other inherit from the vestigial System.ApplicationException. And worse, it is not easy to tell which exceptions should only
 be thrown by the runtime like System.NullReferenceException or System.IndexOutOfRangeException. I still occassionally catch folks throwing those exceptions rather than the ones deriving from System.ArgumentException.&nbsp;Perhaps all the runtime exceptions should
 implement an attribute or marker interface like IFatalException or IRuntimeError or something like that.<br>
</p>
<p>posted by r_keith_hill</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/TheChannel9Team/Chris-Brumme-How-about-a-type-specific-try-catch-mechanism-for-Intellisense#c632246591770000000</link>
		<pubDate>Mon, 05 Jul 2004 21:19:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/TheChannel9Team/Chris-Brumme-How-about-a-type-specific-try-catch-mechanism-for-Intellisense#c632246591770000000</guid>
		<dc:creator>r_keith_hill</dc:creator>
	</item>
</channel>
</rss>