Thursday, March 28, 2024 19:22

Posts Tagged ‘try catch’

Try Catch Finally

Friday, August 3rd, 2018

Continuing from the last lesson, we now know that every time we deal with codes that might generate errors, we should use a Try Catch code construct. You should also know that this great construct offers one more great feature, a Finally block.… Read more

Handling exceptions with Try Catch

Thursday, June 28th, 2018

Usually, when an exception is thrown, the program crashes or begins to malfunction. Fortunately, there is a way to prevent this that allows us to run codes that may generate exceptions, and still safely continue the execution in case of an error.… Read more


Follow the white rabbit