#include <iostream>
using std::cout; using std::endl;

#define N_VALID "is not a valid ID"

void function_throws()
{
  throw N_VALID;
}

int main()
{
    try
    {
        function_throws();
    }
    catch(const char *message)
    {
        cout << message << endl;
    }
}
