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