Exception.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- #include "Exception.h"
- /*
- * namespace OnlineGameLib::Win32
- */
- namespace OnlineGameLib {
- namespace Win32 {
- /*
- * CException
- */
- CException::CException( const _tstring &where, const _tstring &message )
- : m_where(where), m_message(message)
- {
- }
- _tstring CException::GetWhere() const
- {
- return m_where;
- }
- _tstring CException::GetMessage() const
- {
- return m_message;
- }
- void CException::MessageBox( HWND hWnd /* = NULL */ ) const
- {
- /*
- * call to unqualified virtual function
- */
- ::MessageBox( hWnd, GetMessage().c_str(), GetWhere().c_str(), MB_ICONSTOP );
- }
- } // End of namespace OnlineGameLib
- } // End of namespace Win32