Code illustrations for chapter 3, Modularity in Stroustrup's "A tour of C++" on error handling using exceptions.
Exceptions
: illustration of error handling with exceptions.MemoryLeak
: illustrates how inappropriately handled exceptions can lead to memory leaks, and how to fix that.Expected
: illustrates error handling usingstd::expected
.