Introduction

Get introduced to the concept of error handling.

Error handling in Java

In Java, when an error occurs in the normal flow of a program, an Exception is thrown. A try/catch statement can then be used to recover from the Exception and perform the appropriate fallback ...