C++标准异常与自定义异常
参见https://www.runoob.com/cplusplus/cpp-exceptions-handling.html
C++ 标准的异常
C++ 提供了一系列标准的异常,定义在
下表是对上面层次结构中出现的每个异常的说明:
自定义异常
#include <iostream>
#include <exception>
#include <string>
using namespace std;
class MyException : public exception
{
public:
MyException() : message("Error."){}
MyException(string str) : message("Error : " + str) {}
~MyException() throw () {
}
virtual const char* what() const throw () {
return message.c_str();
}
private:
string message;
};
int main()
{
try
{
throw MyException();
}
catch(MyException& e)
{
std::cout << e.what() << std::flush;
}
catch(std::exception& e)
{
//其他的错误
}
}