Fix LOCKFILE fallback

`throw` needs to provide an actual std::exception or it will not be
caught
This commit is contained in:
Seth Hillbrand 2023-05-31 17:01:31 -07:00
parent aacf8f50bf
commit 844226e6b9
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public:
}
else
{
throw;
throw std::runtime_error( "Failed to open lock file" );
}
}
catch( std::exception& e )