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