00001 #pragma once
00002
00003 #include "Exception.h"
00004
00005 class CExceptionThread : public CException
00006 {
00007 private:
00008 unsigned int thread;
00009
00010 public:
00011 CExceptionThread(const char* message, const char* file, int line, unsigned int thread);
00012 virtual ~CExceptionThread() { }
00013
00014 virtual string& Text() { return (CException::Text() += " thread ") += this->thread; }
00015 };