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

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

2013-04-10 16:57:12 -07:00
#include <exception>
struct MyException: std::exception
{
char const* what() const throw() { return "description"; }
}