std::exception
Defined in header <exception> | | |
|---|---|---|
class exception; | | |
Provides consistent interface to handle errors through the throw expression.
All exceptions generated by the standard library inherit from std::exception.
logic_errorinvalid_argumentdomain_errorlength_errorout_of_rangefuture_error(C++11)bad_optional_access(C++17)
runtime_errorrange_erroroverflow_errorunderflow_errorregex_error(C++11)tx_exception(TM TS)system_error(C++11)ios_base::failure(C++11)filesystem::filesystem_error(C++17)
bad_typeidbad_castbad_any_cast(C++17)
bad_weak_ptr(C++11)bad_function_call(C++11)bad_allocbad_array_new_length(C++11)
bad_exceptionios_base::failure(until C++11)bad_variant_access(C++17)
Member functions
(constructor) | constructs the exception object (public member function) |
|---|---|
(destructor) virtual | destructs the exception object (virtual public member function) |
operator= | copies exception object (public member function) |
what virtual | returns an explanatory string (virtual public member function) |
© cppreference.comLicensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com

