Well done!

You have completed Catching Exceptions!

Quiz Question 1 of 6

If DoSomething() throws TreehouseDefense.OutOfBoundsException, which catch clause will catch it?

    try
    {
        DoSomething();
    }
    catch(TreehouseDefense.OutOfBoundsException ex)
    {
    }
    catch(TreehouseDefense.TreehouseDefenseException ex)
    {
    }
    catch(System.Exception ex)
    {
    }

Choose the correct answer below:

Skip Quiz Review Video