Question:Which of the following statements is true regarding the code samples below? A: try { // code goes here } catch (Exception e) { throw e; } B: try { // code goes here } catch (Exception e) { throw; }
A A will lose the call stack trace information. B will preserve the call stack trace information.
B A will preserve the call stack trace information. B will lose the call stack trace information.
C Both A and B will preserve the call stack trace information.
D Both A and B will lose the call stack trace information.
+ AnswerA
+ Report