vote up 22 vote down star
4

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/

flag

8 Answers

vote up 22 vote down check

Catch System.Exception and switch on the types

       catch (Exception ex)            
       {                
           if (ex is FormatException ||
               ex is OverflowException)
           {
               WebId = Guid.Empty;
               return;
           }
           else
           {
               throw;
           }
       }
link|flag
1  
shouldn't it be: else { throw ex; } ? – GordonG Feb 15 at 6:51
1  
You don't have to put the "ex" in there. The throw; is sufficient. – mkelley33 May 3 at 15:31
14  
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 at 10:39
vote up 7 vote down

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();
}
link|flag
Interesting idea and another example that VB.net has some interesting advantages over C# sometimes – Michael Stum Sep 25 '08 at 21:19
vote up 4 vote down

@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.

link|flag
Why not just use the "is" keyword? – Chris Pietschmann Sep 25 '08 at 21:02
If I remember right, "is" is a runtime cast, while typeof is a compile type comparison. But I may be wrong. – FlySwat Sep 25 '08 at 21:04
After having a look at the C# Specification (7.5.11 typeof and 7.9.10 is), i'm accepting this answer as typeof is unambigous. For some reason, I was also too focused on switch..case, which does not work with GetType(), but an if-statement will work as well. – Michael Stum Sep 25 '08 at 21:11
um...you do realize that this code will silently swallow all other exceptions? – Steven A. Lowe Sep 25 '08 at 21:11
The two checks have different semantics. The '==' check is an exact type check, whereas the 'is' check is an assignability check. I would think that the latter is more appropriate in this type of scenario. – Greg Beech Sep 25 '08 at 21:12
show 8 more comments
vote up 1 vote down

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;                           
                }
            }
link|flag
-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
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
vote up 1 vote down

Here's a method that doesn't convert the Type Name to a string, but instead compares Types directly:

try
{
    WebId = new Guid(queryString["web"]);
}
catch (Exception ex)
{
    if (ex is FormatException || ex is OverflowException)
    {
        WebId = Guid.Empty;
    }
}
link|flag
NOTE: this example is broken, missing the else clause to 'throw;' – Aaron Sep 25 '08 at 21:20
vote up 0 vote down

How about try

        {
            WebId = Guid.Empty;
            WebId = new Guid(queryString["web"]);
        }
        catch (FormatException)
        {
        }
        catch (OverflowException)
        {
        }
link|flag
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
vote up 0 vote down
   catch (Exception ex)            
   {                
       if (ex is FormatException ||
           ex is OverflowException) 
       {} else throw;

       WebId = Guid.Empty;
   }
link|flag
vote up 0 vote down
        catch (Exception ex)
        {
            if (!(
                ex is FormatException ||
                ex is OverflowException))
            {
                throw;
            }

            Console.WriteLine("Hello");
        }
link|flag

Your Answer

Get an OpenID
or

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