In Introduction to Exceptions in Java
Exceptions are a type of error that a Java application might produce if there is a problem. Now one potential issue with this is that Java has both Exceptions and Errors, so lets discuss those real quick. Error: indicates serious problem that a reasonable application should not try to catch. These tend to deal with issues…