2.5.1 Error Handling

Error handling is an important part of any program. Correctly handling errors can prevent programs from crashing, enhance user experiences, and more efficiently handles invalid inputs.

In C++, error handling is particularly important since C++ doesnโ€™t naturally throw as many errors as Java does. As a result, you will find that it is important to put in some of your own error handling processes to catch these errors.

In this lesson, you will look at the basic process to check for errors and how to handle them in a safe way so that your program continues execution.

Last updated