C++ Exception Handling

Introduction to C++ Exception Handling

C++ Exception Handling is a powerful mechanism that allows programmers to handle and manage errors and exceptional situations in their code. By using exception handling, you can gracefully handle errors and prevent your program from crashing or displaying cryptic error messages to the user.

How Does Exception Handling Work?

In C++, exception handling involves three main components:

  1. Throw: When an error or exceptional situation occurs, you can throw an exception using the throw keyword. This indicates that something unexpected has happened and needs to be handled.
  2. Catch: To handle the thrown exception, you can use a try-catch block. The try block contains the code that might throw an exception, while the catch block is responsible for catching and handling the exception.
  3. Handle: The catch block is where you handle the exception. You can provide specific code to handle different types of exceptions or have a generic catch block to handle any unexpected exceptions.

Example of Exception Handling in C++

Let’s take a look at a simple example to understand how exception handling works:

// C++ program to demonstrate exception handling
#include <iostream>

int main() {
  try {
    int numerator = 10;
    int denominator = 0;
    int result = numerator / denominator;
    std::cout << "Result: " << result << std::endl;
  } catch (const std::exception& e) {
    std::cout << "An exception occurred: " << e.what() << std::endl;
  }
  return 0;
}

In this example, we have a division operation where the denominator is set to 0. This will result in a runtime error, as division by zero is undefined. However, instead of crashing the program, we handle the exception using a try-catch block.

The try block contains the code that might throw an exception, which in this case is the division operation. The catch block catches the exception and displays an appropriate error message using the e.what() function.

By using exception handling, we can prevent our program from crashing and provide a meaningful error message to the user.

Types of Exceptions

C++ supports different types of exceptions, including both built-in and user-defined exceptions. Built-in exceptions are part of the C++ standard library and provide a way to handle common errors. Some commonly used built-in exceptions include:

  • std::exception: The base class for all exceptions. It provides a what() function to retrieve the error message.
  • std::runtime_error: Represents errors that occur during runtime, such as division by zero or accessing an out-of-bounds index.
  • std::logic_error: Represents errors that occur due to logical flaws in the program, such as invalid arguments or incorrect usage of functions.

You can also create your own custom exceptions by deriving from the std::exception class or any of its derived classes. This allows you to handle specific errors or exceptional situations in your code.

Handling Multiple Exceptions

In some cases, you may encounter multiple exceptions that need to be handled differently. C++ allows you to handle multiple exceptions using multiple catch blocks. Each catch block can handle a specific type of exception.

try {
  // Code that might throw exceptions
} catch (const ExceptionType1& e) {
  // Handle ExceptionType1
} catch (const ExceptionType2& e) {
  // Handle ExceptionType2
} catch (...) {
  // Handle any other exceptions
}

In the above example, the first catch block handles exceptions of type ExceptionType1, the second catch block handles exceptions of type ExceptionType2, and the last catch block handles any other exceptions that are not caught by the previous blocks.

Conclusion

C++ Exception Handling is a powerful mechanism that allows you to handle and manage errors in your code. By using throw to indicate exceptional situations and try-catch blocks to handle those exceptions, you can prevent your program from crashing and provide a better user experience.

Remember to use specific exception types when possible and provide meaningful error messages to aid in debugging and troubleshooting.

Scroll to Top