C++ Exception 库 - domain_error
描述
这是一个域错误异常。数学函数的域是为其定义的值的子集。 例如,平方根函数只为非负数定义。 因此,此类函数的负数将被视为域错误。
声明
以下是 std::domain_error 的声明。
class domain_error;
C++11
class domain_error;
参数
none
返回值
none
异常
No-throw guarantee − 没有成员抛出异常。
成员
constructor − what_arg 与成员 what 返回的值具有相同的内容。
what − 它用于获取字符串识别异常。