Fixed problems that emerged in list.
[xlqstl.git] / exception.cxx
blob893717c79ca5c7b80c88dcf0d2b48dbf1fc68c96
1 #include "exception"
3 namespace std {
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"; }