C++ 异常库 - bad_exception



描述

这是一个由意外处理程序抛出的异常。

声明

以下是 std::bad_exception 的声明。

class bad_exception;

C++11

class bad_exception;

参数

返回值

异常

无抛出保证 - 没有成员抛出异常。

示例

以下为 std::bad_exception 的示例。

#include <iostream>
#include <exception>
#include <stdexcept>
 
void my_unexp() { throw; }
 
void test() throw(std::bad_exception) {
   throw std::runtime_error("test error");
}
 
int main() {
   std::set_unexpected(my_unexp);
   try {
      test();
   } catch(const std::bad_exception& e) {
      std::cerr << "Caught " << e.what() << '\n';
   }
}

示例输出应如下所示:

Caught std::bad_exception
exception.htm
广告