C++ 参考手册

位置:首页 > C++ 参考手册 >工具库 >格式化库 (C++20) > std::format_error

定义于头文件 <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 的虚公开成员函数)

示例

本节未完成
原因:暂无示例

参阅