mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -06:00
Throw the exact (same) exception
This commit is contained in:
@@ -389,7 +389,7 @@ void BitTorrent::DBResumeDataStorage::createDB() const
|
||||
catch (const RuntimeError &err)
|
||||
{
|
||||
db.rollback();
|
||||
throw err;
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -566,7 +566,7 @@ void BitTorrent::DBResumeDataStorage::Worker::storeQueue(const QVector<TorrentID
|
||||
catch (const RuntimeError &err)
|
||||
{
|
||||
db.rollback();
|
||||
throw err;
|
||||
throw;
|
||||
}
|
||||
}
|
||||
catch (const RuntimeError &err)
|
||||
|
||||
Reference in New Issue
Block a user