blob: 8cf51072e5d59361711fbbf9a754ad07c6feeb24 [file] [log] [blame]
#include <iostream>
#include "myexception.h"
#include "throwable.h"
int throw_an_exception()
{
std::cout << "throw_an_exception()" << std::endl;
throw my_exception("my exception");
}