2008-04-27 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Rewritten Exception class. Throw exception object, not its pointer and
	catch by reference, so that remove problematic delete operator for
	catched exception.
	* src/Exception.cc
	* src/Exception.h
	* test/ExceptionTest.cc
	* src/*: All files throwing/catching exception.
	* test/*: All files throwing/catching exception.
This commit is contained in:
Tatsuhiro Tsujikawa 2008-04-27 02:22:14 +00:00
parent a7952cce05
commit 1ef99931e1
159 changed files with 1135 additions and 1000 deletions

View file

@ -46,11 +46,8 @@ void DHTMessageTrackerEntryTest::testMatch()
CPPUNIT_ASSERT(!entry.match(msg2->getTransactionID(),
msg2->getRemoteNode()->getIPAddress(),
msg2->getRemoteNode()->getPort()));
} catch(Exception* e) {
std::cerr << *e << std::endl;
std::string msg = e->getMsg();
delete e;
CPPUNIT_FAIL(msg);
} catch(Exception& e) {
CPPUNIT_FAIL(e.stackTrace());
}
}