void ThrowIfInvalidHandle()

in src/VSIXBootstrapper.Shared/Process.h [110:116]


    void ThrowIfInvalidHandle() const
    {
        if (!m_hProcess)
        {
            throw win32_error(ERROR_INVALID_HANDLE);
        }
    }