Which code segment should you use?

You are developing an application that uses structured exception handling. The application includes a class named ExceptionLogger.

The ExceptionLogger class implements a method named LogException by using the following code segment:

public static void LogException(Exception ex)

You have the following requirements:

• Log all exceptions by using the LogException() method of the ExceptionLogger class.

• Rethrow the original exception, including the entire exception stack.

You need to meet the requirements.

Which code segment should you use?

A . Option A
B . Option B
C . Option C
D . Option D

Answer: A

Explanation:

Once an exception is thrown, part of the information it carries is the stack trace. The stack trace is a list of the method call hierarchy that starts with the method that throws the exception and ends with the method that catches the exception. If an exception is re-thrown by specifying the exception in the throw statement, the stack trace is restarted at the current method and the list of method calls between the original method that threw the exception and the current method is lost. To keep the original stack trace information with the exception, use the throw statement without specifying the exception.

Reference: http://msdn.microsoft.com/en-us/library/ms182363(v=vs.110).aspx

Latest 70-483 Dumps Valid Version with 288 Q&As

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments