What is this output called?

What is this output called?


a. a method log
b. a stack trace
c. an exception handler
d. an exception hierarchy


Answer: a stack trace

Output example:
Exception in thread "main" java.util.InputMismatchException
at java.util.Scanner.throwFor(Scanner.java:818)
at java.util.Scanner.next(Scanner.java:1420)
at java.util.Scanner.nextDouble(Scanner.java:2324)
at FutureValueApp.main(FutureValueApp.java:17)


Learn More :