mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 06:57:24 -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)
|
catch (const RuntimeError &err)
|
||||||
{
|
{
|
||||||
db.rollback();
|
db.rollback();
|
||||||
throw err;
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -566,7 +566,7 @@ void BitTorrent::DBResumeDataStorage::Worker::storeQueue(const QVector<TorrentID
|
|||||||
catch (const RuntimeError &err)
|
catch (const RuntimeError &err)
|
||||||
{
|
{
|
||||||
db.rollback();
|
db.rollback();
|
||||||
throw err;
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (const RuntimeError &err)
|
catch (const RuntimeError &err)
|
||||||
|
|||||||
Reference in New Issue
Block a user