| 129 | } |
| 130 | |
| 131 | Win32Error::Win32Error(DWORD error, const std::string& what) : |
| 132 | std::system_error(error, std::system_category(), what) |
| 133 | { |
| 134 | } |
| 135 | |
| 136 | void ThrowWin32Error(DWORD error, const std::string& what) |
| 137 | { |
nothing calls this directly
no outgoing calls
no test coverage detected