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.
|
#pragma once
|
|
|
|
//自定义异常类型
|
|
class CExceptionMsg
|
|
{
|
|
public:
|
|
CExceptionMsg(void);
|
|
~CExceptionMsg(void);
|
|
void SetMsg(CString &str){m_MsgStr = str;};
|
|
CString GetMsgStr(){return m_MsgStr;};
|
|
private:
|
|
CString m_MsgStr;//保存异常的信息
|
|
};
|
|
|