RosettaCodeData/Task/Exceptions/C++/exceptions-2.cpp

6 lines
130 B
C++
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#include <exception>
struct MyException: std::exception
{
virtual const char* what() const noexcept { return "description"; }
}