std::format_error

来自cppreference.com
< cpp‎ | utility‎ | format
 
 
 
格式化库
格式化函数
(C++20)
(C++20)
(C++20)
(C++20)
格式化器
(C++20)
格式化参数
格式错误
format_error
(C++20)
 
定义于头文件 <format>
class format_error;
(C++20 起)

定义抛出以报告格式化库中错误的异常对象类型。

cpp/error/exceptioncpp/error/runtime errorstd-format error-inheritance.svg

继承图

成员函数

(构造函数)
构造拥有指定消息的 format_error
(公开成员函数)

std::format_error::format_error

explicit format_error( const std::string& what_arg );
(1)
explicit format_error( const char* what_arg );
(2)

构造以 what_arg 为能通过 what() 访问的解释字符串的异常对象。

继承自 std::exception

成员函数

析构该异常对象
(std::exception 的虚公开成员函数)
[虚]
返回解释性字符串
(std::exception 的虚公开成员函数)

示例

参阅