How should you complete the relevant code?

DRAG DROP
You are developing an application that implements a set of custom exception types. You declare the
custom exception types by using the following code segments:

The application includes a function named DoWork that throws .NET Framework exceptions and
custom exceptions. The application contains only the following logging methods:

The application must meet the following requirements:
When ContosoValidationException exceptions are caught, log the information by using the static
void Log (ContosoValidationException ex) method.
When ContosoDbException or other ContosoException exceptions are caught, log the information by
using the static void Log(ContosoException ex) method.
You need to meet the requirements.
How should you complete the relevant code? (To answer, drag the appropriate code segments to
the correct locations in the answer are
a. Each code segment may be used once, more than once, or not at all. You may need to drag the
split bar between panes or scroll to view content.)

DRAG DROP
You are developing an application that implements a set of custom exception types. You declare the
custom exception types by using the following code segments:

The application includes a function named DoWork that throws .NET Framework exceptions and
custom exceptions. The application contains only the following logging methods:

The application must meet the following requirements:
When ContosoValidationException exceptions are caught, log the information by using the static
void Log (ContosoValidationException ex) method.
When ContosoDbException or other ContosoException exceptions are caught, log the information by
using the static void Log(ContosoException ex) method.
You need to meet the requirements.
How should you complete the relevant code? (To answer, drag the appropriate code segments to
the correct locations in the answer are
a. Each code segment may be used once, more than once, or not at all. You may need to drag the
split bar between panes or scroll to view content.)

Answer:



Leave a Reply 4

Your email address will not be published. Required fields are marked *


rao

rao

correct

Aiden

Aiden

But where i catch the ContosoBbException ?
i would replace the Third option with the ContosoBbException ._.

rao

rao

ContosoDbException extends ContosoException so, if you catch ContosoException in the second cathc block, you also catch ContosoDbException.

Miroslav

Miroslav

Shoudn’t the correct answer look like this?
ContosoValidationException
ContosoDbException
ContosoException

The questions doesn’t say you need to catch general Exception and says nothing about you should use the method static void Log(Exception ex)