| 52 | MyException3 &operator=(const MyException3 &) = default; |
| 53 | MyException3 &operator=(MyException3 &&) = default; |
| 54 | virtual ~MyException3() = default; |
| 55 | // Rule of 5 END. |
| 56 | private: |
| 57 | std::string message = ""; |
nothing calls this directly
no outgoing calls
no test coverage detected