19.3.2 Values Thrown and Caught (cont.)

This doesn't work as intended:

try
{
   . . .
   throw "Stack Underflow";
   . . .
}
catch (string err)
{
   cerr << err << "\n";
}

prev |top |next