00001 #include "Headers.h"
00002 #include "ExceptionWorker.h"
00003
00004 CExceptionWorker::CExceptionWorker(const char* message, const char* file, int line, unsigned int worker)
00005 : CException(message, file, line)
00006 {
00007 this->worker = worker;
00008 (this->text += " worker ") += this->worker;
00009 }