Win32Exception.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:0k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #include "stdafx.h"
  2. #include "Win32Exception.h"
  3. #include "Utils.h"
  4. /*
  5.  * namespace OnlineGameLib::Win32
  6.  */
  7. namespace OnlineGameLib {
  8. namespace Win32 {
  9. CWin32Exception::CWin32Exception( const _tstring &where,  DWORD error )
  10. : CException( where, GetLastErrorMessage( error ) ), m_error( error )
  11. {
  12. }
  13. } // End of namespace OnlineGameLib
  14. } // End of namespace Win32