|
From: Christian P. <cp...@us...> - 2004-12-24 17:17:06
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8293/include/pclasses Modified Files: Exception.h Log Message: Added OverflowError Index: Exception.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/Exception.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Exception.h 24 Dec 2004 16:48:05 -0000 1.2 +++ Exception.h 24 Dec 2004 17:16:57 -0000 1.3 @@ -104,6 +104,12 @@ ~OutOfBounds() throw(); }; +class OverflowError: public RuntimeError { + public: + OverflowError(const char* what, const SourceInfo& si) throw(); + ~OverflowError() throw(); +}; + } //! namespace P #endif |