Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

made the description below 150 characters #5507

Merged
merged 4 commits into from
Oct 18, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/cpp/concepts/exceptions/exceptions.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
---
Title: 'Exceptions'
Description: 'An Exception in C++ is the computers response to a problem that occurs while executing a programs code. If the code does not handle the exception, the program will stop running due to the error.'
Description: 'In C++, an Exception is a runtime error that occurs during the execution of a program. If not handled, it stops the program execution.'
Subjects:
- 'Computer Science'
- 'Game Development'
Tags:
- 'Exceptions'
- 'Try'
- 'Catch'
- 'Errors'
- 'Exceptions'
- 'Try'
CatalogContent:
- 'learn-c-plus-plus'
- 'paths/computer-science'
---

In C++, an **exception** is the computer's response to a problem that occurs while executing a program's code. The computer will create an exception, and if the code does not have a way to handle it, then the program will stop executing due to the error.
In C++, an **`Exception`** is a runtime error that occurs during the execution of a program. If not handled, it stops the program execution. The computer will create an `exception`, and if the code does not have a way to handle it, then the program will stop executing due to the error.

## Catching an Exception

Expand Down
Loading