Java Multi-catch block
One or more catch blocks may come after a try block. A distinct exception handler must be present in each catch block. Use a Java multi-catch block, then, if you need to carry out multiple tasks when various exceptions arise. Syntax: Things to keep in mind: Only one catch block is run at a time, […]
June 23, 2022 | Java | No comments