Page MenuHomec4science

stl_exception.cpp
No OneTemporary

File Metadata

Created
Sat, Aug 24, 02:14

stl_exception.cpp

#include <exception>
#include <iostream>
void foo() { throw std::runtime_error("my message"); }
int main() {
try {
foo();
} catch (const std::runtime_error &e) {
std::cout << e.what() << std::endl;
}
}

Event Timeline