| 118 | public: |
| 119 | |
| 120 | exception( exception const & other ): |
| 121 | Ex(other), |
| 122 | exception_base(other), |
| 123 | error_id(other), |
| 124 | clear_current_error_(other.clear_current_error_) |
| 125 | { |
| 126 | other.clear_current_error_ = false; |
| 127 | } |
| 128 | |
| 129 | exception( exception && other ) noexcept: |
| 130 | Ex(std::move(other)), |
no test coverage detected