I've created my own exception class which is inherited from the class std::exception. Actually I'm not sure why I'm doing this, but I've seen everyone doing it, and I think it's the way to handle the errors of the standard library with the errors of my programs.
Anyway, the problem is, I would like to overload the function std::exception::what(), so that in case I don't catch the exception it displays what the error is from my program. So what I did is the following:
So now I expect when a throw happens without being catched, the new version of what() will be called and write in the console what the error is. But it doesn't happen!
Is it right the way I'm thinking? or have I missed something?
The proper prototype to override exception::what() is constchar* what() constthrow()
But if you want to be sure that what() is displayed, you should catch the exception