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

6 lines
121 B
C++

#include <exception>
struct MyException: std::exception
{
char const* what() const throw() { return "description"; }
}