@brief Construct a new exception object with an error message. @param[in] msg An error message. @sa https://fktn-k.github.io/fkYAML/api/exception/constructor/
| 1651 | /// @param[in] msg An error message. |
| 1652 | /// @sa https://fktn-k.github.io/fkYAML/api/exception/constructor/ |
| 1653 | explicit exception(const char* msg) noexcept { |
| 1654 | if (msg) { |
| 1655 | m_error_msg = msg; |
| 1656 | } |
| 1657 | } |
| 1658 | |
| 1659 | public: |
| 1660 | /// @brief Returns an error message internally held. If nothing, a non-null, empty string will be returned. |
no outgoing calls
no test coverage detected