我为我的程序做一个例外:
class PortNotDefined: public exception
{
public:
const char* what() const throw()
{
return "Puerto no definido o no disponible";
}
} PortNotDefined;
后来,我使用了这样的 try-catch 块:
try{.....}
catch(const char* a){
std::string error(a);
...
}
但它没有捕获异常,我不知道我是否很好地定义了异常或者是 try-catch 中的问题
谢谢你的时间^^