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