CJCoding With Joseph
15per day

Exception Chaining

Write a method loadConfig(String input) that tries to parse input as an integer using Integer.parseInt(). If a NumberFormatException occurs, catch it and throw a new RuntimeException with the message "Config error" and the original exception as the cause.

In main, call loadConfig and catch RuntimeException. Print e.getMessage(), then print "Caused by: " + e.getCause().getClass().getSimpleName().

⚠️ AUTO-INPUT MODE: The input stream will automatically contain 'bad\n'.

Expected Output:

Config error
Caused by: NumberFormatException
Topics:
Miscellaneous
📥 Auto-Input:
bad\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent · Ctrl+Enter to run · Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.