5 lines
121 B
C++
5 lines
121 B
C++
#include <exception>
|
|
struct MyException: std::exception
|
|
{
|
|
char const* what() const throw() { return "description"; }
|
|
}
|