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