What output will be produced if the exception is thrown


Suppose an exception, class myException, is defined as follows:

class myException
{
public:
myException()
{
message = "myException thrown!";
cout << "Immediate attention required!"
<< endl;
}
myException (string msg)
{
message = msg;
cout << "Attention required!" << endl;
}
string what()
{
return message;
}
private:
string message;
}

Suppose that in a user program, the catch block has the following form:
catch (myException mE)
{
cout << mE.what() << endl;
}

1. What output will be produced if the exception is thrown with the default constructor?

2. What output will be produced if the exception is thrown with the constructor with parameters with the following actual parameter?
"May Day, May Day"

Solution Preview :

Prepared by a verified Expert
C/C++ Programming: What output will be produced if the exception is thrown
Reference No:- TGS01247037

Now Priced at $20 (50% Discount)

Recommended (95%)

Rated (4.7/5)