Constructor with error code. @param p_ErrorCode The Windows error code associated with the exception.
| 1594 | // @param p_ErrorCode The Windows error code associated with the exception. |
| 1595 | // |
| 1596 | SettingsException::SettingsException(const LONG p_ErrorCode) noexcept |
| 1597 | : std::exception(), |
| 1598 | m_ErrorCode(p_ErrorCode) |
| 1599 | { |
| 1600 | } |
| 1601 | |
| 1602 | // |
| 1603 | // Returns the associated error code, returned by a Win32 API call. |
nothing calls this directly
no outgoing calls
no test coverage detected