You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
276 B
C

#pragma once
//<2F>Զ<EFBFBD><D4B6><EFBFBD><EFBFBD><EFBFBD><ECB3A3><EFBFBD><EFBFBD>
class CExceptionMsg
{
public:
CExceptionMsg(void);
~CExceptionMsg(void);
void SetMsg(CString &str){m_MsgStr = str;};
CString GetMsgStr(){return m_MsgStr;};
private:
CString m_MsgStr;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><ECB3A3><EFBFBD><EFBFBD>Ϣ
};