I'm trying to understand exceptions for my C++ class, and there is something that I don't understand about this program. Why is there no object created in the exception? Why is there only the class name and parameters provided?
Here: throw( testing ("testing this message"));
#include <iostream>
#include <string>
#include <stdexcept>
using namespace std;
class testing: public runtime_error
{
public:
testing(const string &message)
:runtime_error(message) {}
};
int main()
{
try {
throw( testing ("testing this message"));
}
catch (runtime_error &exception) {
cerr << exception.what() << endl;
}
return 0;
}
testing's constructor. – DeadMG Aug 20 '12 at 1:28newis not the only way to create new instances of objects in C++. – Greg Hewgill Aug 20 '12 at 1:32