我需要我的方法来抛出自定义异常,但它一直给我这个错误:
error C2059: syntax error : 'string'
我正在阅读以下链接,但它不能解决我的问题:http:
//msdn.microsoft.com/en-us/library/t8xe60cf%28VS.80%29.aspx
这是我的代码:
#include <exception>
#include <stdexcept>
#include <string>
#include "Log.h"
LOG_USE()
class Exception : public std::exception
{
public:
explicit Exception(std::string msg)
: message(msg)
{}
~Exception()
{}
virtual const char* what() const throw()
{
LOG_MSG(message) // write to log file
return message.c_str();
}
private:
std::string message;
};
#endif
在我的应用程序的某个地方,我有如下所示的方法:
.....
....
void view::setDisplayView(ViewMode mode) throw(Exception("setDisplayView error"))
{
;
}
....
....
我在这里做错了什么?
我在 32 位 Windows XP 上使用 Visual Studio 2008。