Codectionary / Developer documentation / C++

C++ exceptions

C++ reference for c++ exceptions.

Syntax

try {
  throw std::runtime_error("Failed");
} catch (const std::exception& error) {
  std::cerr << error.what();
}

Examples

C++ exceptions example

A focused example you can adapt while practising.

try {
  throw std::runtime_error("Failed");
} catch (const std::exception& error) {
  std::cerr << error.what();
}

Best practices

  • Start with the smallest working example, then adapt it to your project.
  • Use the language’s standard library and idioms before introducing extra dependencies.

At a glance

Purpose
Systems and general-purpose software
File extension
.cpp · .hpp
Runs in
Compiled native applications
Usually used with
Compiler and standard library

Specifications & further reading

Related C++ documentation