Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It is discouraged to simply catch System.Exception, instead only the "known" Exceptions should be caught.

Now, this sometimes leads to unneccessary repetetive code, for example:

try
{
    WebId = new Guid(queryString["web"]);
}
catch (FormatException)
{
    WebId = Guid.Empty;
}
catch (OverflowException)
{
    WebId = Guid.Empty;
}

I wonder: Is there a way to catch both Exceptions and only call the WebId = Guid.Empty call once?

Edit: the given example is rather simple, as it's only a Guid. But imagine Code where you modify an object multiple times, and if one of the manipulations fail in an expected way, you want to "reset" the object. However, if there is an unexpected Exception, I still want to throw that higher.

About the Answer: Thanks everyone! For some reason, I had my mind set on a switch-case statement which does not support switching on GetType(). Now, there were two answers, one using "typeof" and one using "is". I first thought "typeof()" would be my Function because I thought "Hey, I only want to catch FormatException because that's the only thing I expect". But that's not how catch() works: catch also catches all derived exceptions. After thinking about it, this is really obvious: Otherwise, catch(Exception ex) would not work! So the correct answer is "is". Yay, learned two things with only one question \o/

share|improve this question

12 Answers

up vote 412 down vote accepted

Catch System.Exception and switch on the types

catch (Exception ex)            
{                
    if (ex is FormatException ||
        ex is OverflowException)
    {
        WebId = Guid.Empty;
        return;
    }
    else
    {
        throw;
    }
}
share|improve this answer
16  
You don't have to put the "ex" in there. The throw; is sufficient. – mkelley33 May 3 '09 at 15:31
318  
throw ex is one if those really common mistakes. As a rule of thumb: You NEVER want to throw ex, since that generates a new exception, with an empty call stack. throw simply throws the existing exception higher. – Michael Stum May 5 '09 at 10:39
73  
@Andrew... yeah, well, FxCop treats objects like women, man. – user414076 Sep 3 '10 at 2:26
7  
The latest version of FxCop does not throw an exception when the code above is used. – Peter Chapman Jul 8 '11 at 5:12
10  
The else is kind of redundant. – slypete May 9 '12 at 6:28
show 12 more comments

Not in C# unfortunately, as you'd need an exception filter to do it and C# doesn't expose that feature of MSIL. VB.NET does have this capability though, e.g.

Catch ex As Exception When TypeOf ex Is FormatException OrElse TypeOf ex Is OverflowException

What you could do is use an anonymous function to encapsulate your on-error code, and then call it in those specific catch blocks:

Action onError = () => WebId = Guid.Empty;
try
{
    // something
}
catch (FormatException)
{
    onError();
}
catch (OverflowException)
{
    onError();
}
share|improve this answer
10  
Interesting idea and another example that VB.net has some interesting advantages over C# sometimes – Michael Stum Sep 25 '08 at 21:19
2  
hmmm.... makes me think of using IL rewriting ;) – Jim Deville Jul 30 '10 at 6:00
@MichaelStum I always felt VB is more powerful but less readable than C# contrary to popular belief. – nawfal May 18 at 20:03

@Micheal

Slightly revised version of your code:

catch (Exception ex)
{
   Type exType = ex.GetType();
   if (exType == typeof(System.FormatException) || 
       exType == typeof(System.OverflowException)
   {
       WebId = Guid.Empty;
   } else {
      throw;
   }
}

String comparisons are ugly and slow.

share|improve this answer
8  
Why not just use the "is" keyword? – Chris Pietschmann Sep 25 '08 at 21:02
1  
add an else { throw; } and its good – Steven A. Lowe Sep 25 '08 at 21:16
10  
@Michael - If Microsoft introduced, say, StringTooLongException derived from FormatException then it is still a format exception, just a specific one. It depends whether you want the semantics of 'catch this exact exception type' or 'catch exceptions that mean the format of the string was wrong'. – Greg Beech Sep 25 '08 at 21:19
2  
@Michael - Also, note that "catch (FormatException ex) has the latter semantics, it will catch anything derived from FormatException. – Greg Beech Sep 25 '08 at 21:21
9  
@Alex No. "throw" without "ex" carries the original exception, including original stack trace, up. Adding "ex" makes the stack trace reset, so you really get a different exception than the original. I'm sure someone else can explain it better than me. :) – Stuart Branham Sep 22 '10 at 22:04
show 11 more comments

The accepted answer seems acceptable, except that CodeAnalysis/FxCop will complain about the fact that it's catching a general exception type.

Also, it seems the "is" operator might degrade performance slightly. http://msdn.microsoft.com/en-us/library/ms182271.aspx says to "consider testing the result of the 'as' operator instead", but if you do that, you'll be writing more code than if you catch each exception separately.

Anyhow, here's what I would do:

bool exThrown = false;

try
{
    // something
}
catch( FormatException ){ exThrown = true; }
catch( OverflowException ){ exThrown = true; }

if( exThrown )
{
    // something else
}
share|improve this answer
9  
But be aware that you can't rethrow the exception without losing the stack trace if you do it like this. (See Michael Stum's comment to the accepted answer) – Gunder Dec 9 '10 at 11:27
This pattern can be improved by storing the exception(please excuse the poor formatting -- I can't figure out how to put code in comments): Exception ex = null; try { // something } catch( FormatException e){ ex = e; } catch( OverflowException e){ ex = e; } if( ex != null ) { // something else and deal with ex } – Jesse Weigert Mar 16 '12 at 20:03
1  
@JesseWeigert: 1. You can use backticks to give a piece of text a mono-spaced font and light grey background. 2. You still won't be able to rethrow the original exception including the stacktrace. – Oliver Nov 22 '12 at 17:19

For the sake of completeness, since .NET 4.0 the code can rewritten as:

Guid.TryParse(queryString["web"], out WebId);

TryParse never throws exceptions and returns Guid.Empty if format is wrong.

share|improve this answer
Precisely--concise, and you totally bypass the performance penalty of handling the exception, the bad form of intentionally using exceptions to control program flow, and the soft focus of having your conversion logic spread around, a little bit here and a little bit there. – Craig Apr 17 at 3:56
1  
I know what you meant, but of course Guid.TryParse never returns Guid.Empty. If the string is in an incorrect format, it sets the result output parameter to Guid.Empty, but it returns false. I'm mentioning it because I've seen code that does things in the style of Guid.TryParse(s, out guid); if (guid == Guid.Empty) { /* handle invalid s */ }, which is usually wrong if s could be the string representation of Guid.Empty. – hvd May 18 at 11:39
wow you have answered the question, except that it is not in the spirit of the question. The larger problem is something else :( – nawfal May 18 at 20:01
   catch (Exception ex)            
   {                
       if (ex is FormatException ||
           ex is OverflowException) 
       {} else throw;

       WebId = Guid.Empty;
   }
share|improve this answer
3  
-1: convoluted version of accepted answer, with no added value. – ANeves Jan 10 '11 at 19:24
You get less nesting - so called exit early strategy. But I must confess I would never write such code in real life. I posted it just for the sake of having more alternatives. – Konstantin Spirin Jan 11 '11 at 2:09
1  
Spirit, seems to me you have the same amount of nesting, but with less readibility. :( Did you mean if (!ex is FormatException && !ex is OverflowException){ throw; } WebId = Guid.Empty; ? (And doesn't exit early imply using return? Maybe not.) – ANeves Jan 27 '11 at 13:52
        catch (Exception ex)
        {
            if (!(
                ex is FormatException ||
                ex is OverflowException))
            {
                throw;
            }

            Console.WriteLine("Hello");
        }
share|improve this answer

This is a variant of Matt's answer (I feel that this is a bit cleaner)...use a method:

public void TryCatch(...)
{
    try
    {
       // something
       return;
    }
    catch (FormatException) {}
    catch (OverflowException) {}

    WebId = Guid.Empty;
}

Any other exceptions will be thrown and the WebId = Guid.Empty; code won't be hit. If you don't want other exceptions to crash your program, just add this AFTER the other two catches:

...
catch (Exception)
{
     // something, if anything
     return; // only need this if you follow the example I gave and put it all in a method
}
share|improve this answer
-1 This will execute WebId = Guid.Emtpy in the case where no exception was thrown. – Sepster Oct 23 '12 at 13:41
1  
@sepster I think the return statement after "// something" is implied here. I do not really like the solution, but this is a constructive variant in the discussion. +1 to undo your downvote :-) – toong Oct 23 '12 at 21:12
@Sepster toong is right, I assumed that if you wanted a return there, then you would put one...I was trying to make my answer general enough to apply to all situations in case others with similar but not exact questions would benefit as well. However, for good measure, I've add a return to my answer. Thanks for the input. – Brandon Oct 24 '12 at 17:27
@toong Of course. Removed my downvote ;-) – Sepster Oct 25 '12 at 14:33

How about

try
{
    WebId = Guid.Empty;
    WebId = new Guid(queryString["web"]);
}
catch (FormatException)
{
}
catch (OverflowException)
{
}
share|improve this answer
That works only if the Catch-Code can be fully moved into the Try-Block. But imaging code where you make multiple manipulations to an object, and one in the middle fails, and you want to "reset" the object. – Michael Stum Sep 25 '08 at 20:59
   
In that case I would add a reset function and call that from multiple catch blocks. – Maurice Sep 25 '08 at 21:04

Cautioned and Warned: Yet another kind, functional style.

What is in the link doesn't answer your question directly, but it's trivial to extend it to look like:

static void Main() 
{ 
    Action body = () => { ...your code... };

    body.Catch<InvalidOperationException>() 
        .Catch<BadCodeException>() 
        .Catch<AnotherException>(ex => { ...handler... })(); 
}

(Basically provide another empty Catch overload which returns itself)

The bigger question to this is why. I do not think the cost outweighs the gain here :)

share|improve this answer

Design an exception inheritance hierarchy for your application.

share|improve this answer
7  
Abandoning all the perfectly sane and useful Exception .net provides (ArgumentException, InvalidOperationException etc.) for the sake of being able to catch "MyApplicationBaseException" seems to offer a bad cost/benefit relation. Also, it won't help me if I want to catch exceptions thrown by string.Format and other Framework methods. – Michael Stum Jul 15 '11 at 1:05
1  
@MichaelStum +1 on your comment above. But aren't you looking to abandon all the perfectly sane and useful exception handling syntax provided to elegantly catch multiple exceptions? That you want to execute an identical body of code as a result of differing conditions is pretty much the use-case for a method call. But we don't try to group-together (in potentially obscure if/then blocks) all the other pre-cursors to a particular method call in other parts of our program, so should we do it here? Not arguin', just philosophisin' (in fact I came here as I had the same question as you)! ;-) – Sepster Oct 23 '12 at 13:53
@MichaelStum: The .net exception hierarchy may be sane and useful from the standpoint of a human identifying things, but it seems pretty useless from the standpoint of deciding how far the stack needs to be unwound when a problem occurs. For example, if a user selects "Open..." and picks a file that can't be parsed, how should the outer application layer identify which exceptions should simply say "File cannot be opened", and which ones indicate the application as a whole is corrupt and needs to shut down? – supercat Dec 16 '12 at 4:57

Note that I did find one way to do it, but this looks more like Material for TheDailyWTF:

            catch (Exception ex)
            {

                switch (ex.GetType().Name)
                {
                    case "System.FormatException":
                    case "System.OverflowException":
                        WebId = Guid.Empty;
                        break;
                    default:
                        throw;                           
                }
            }
share|improve this answer
3  
-1 vote, +5 WTF :-) This should not have been marked as an answer, but it is he-larious. – Aaron Sep 25 '08 at 21:23
1  
it's not marked as answer, it's in that fuzzy blue color because i'm the one who asked the question :) the Answer is green. – Michael Stum Sep 25 '08 at 21:32
5  
good grief..... – Adam Ralph Sep 24 '10 at 7:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.