I have written a Java class that throws an IOException from within a 'while' loop.
If an IOException is thrown, (and caught), I wish to increment a Static variable and then resume (jump back to) where the exception was thrown from.
How do I achieve this?
I am assuming there is something I can include in the exception handler.
Any help will be most gratefully received.
If an IOException is thrown, (and caught), I wish to increment a Static variable and then resume (jump back to) where the exception was thrown from.
How do I achieve this?
I am assuming there is something I can include in the exception handler.
Any help will be most gratefully received.