Does anyone if there is a way to break out of a method in Java?
I have a return statement inside of a catch block and when an exception is thrown the contents of the catch block are executed but instead of the method returning back to it's caller the code after the try{ is being executed. :confused: Is there another way to handle this?
