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

模拟服务器

开发平台:

C/C++

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