Language C++

#include 
using std::cout;
using std::endl;
#include 
using std::exception;
void throwException() 
{
   try {
      throw exception(); 
   } 
   catch( exception e )
   {
      cout << "Exception handled in function throwException\n";
      throw;  
   } 
   cout << "This also should not print\n";

int main()
{
   try {
      throwException();
      cout << "This should not print\n";
   }catch ( exception e ){
      cout << "Exception handled in main\n";
   } 
   return 0;
}