John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: C++ MOC


C++ Exceptions

Principles

try / catch

1
2
3
4
catch (ExceptionType& e) {
	e.what()
	//recovery
}

References: https://www2.cs.sfu.ca/CourseCentral/225/alavergn/Labs/Lab6/6-operator_overloading_and_exceptions.html

Created:: 2022-03-01 04:09


Interactive Graph