|
|
|
|
Member functions | ||||
bad_exception::operator= | ||||
bad_exception& operator=(const bad_exception& other)throw(); | (until C++11) | |
bad_exception& operator=(const bad_exception& other)noexcept; | (since C++11) (constexpr since C++26) | |
Assigns the contents ofother.If*this andother both have dynamic typestd::exception
thenstd::strcmp(what(), other.what())==0 after assignment.(since C++11)
other | - | anotherbad_exception object to assign |
*this.