← Back to Miscellaneous
Question 220
Exception Chaining
Exception Chaining
Write a methodloadConfig(String input)that tries to parseinputas an integer usingInteger.parseInt(). If aNumberFormatExceptionoccurs, catch it and throw a newRuntimeExceptionwith the message"Config error"and the original exception as the cause. Inmain, callloadConfigand catchRuntimeException. Printe.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
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.