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: