Obtains a string for the specified HRESULT error code
| 209 | |
| 210 | // Obtains a string for the specified HRESULT error code |
| 211 | DXException(HRESULT hresult) : errorCode(hresult) |
| 212 | { |
| 213 | message = GetDXErrorString(hresult); |
| 214 | } |
| 215 | |
| 216 | DXException(HRESULT hresult, LPCWSTR errorMsg) : errorCode(hresult) |
| 217 | { |
nothing calls this directly
no test coverage detected