5 exception::exception() throw() { }
6 exception::exception(const exception
&) throw() { }
7 exception
&exception::operator = (const exception
&) throw() { return *this; }
8 exception::~exception() throw() { }
9 const char *exception::what() const throw() { return "exception"; }