|
From: Christian P. <cp...@us...> - 2004-12-24 17:17:06
|
Update of /cvsroot/pclasses/pclasses2/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8293/src Modified Files: Exception.cpp Log Message: Added OverflowError Index: Exception.cpp =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/Exception.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Exception.cpp 24 Dec 2004 16:48:04 -0000 1.3 +++ Exception.cpp 24 Dec 2004 17:16:57 -0000 1.4 @@ -118,4 +118,14 @@ { } + +OverflowError::OverflowError(const char* what, const SourceInfo& si) throw() +: RuntimeError(what, si) +{ +} + +OverflowError::~OverflowError() throw() +{ +} + } // !namespace P |