mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 07:18:08 +00:00
Throw the exact (same) exception
This commit is contained in:
parent
6d399f0303
commit
05e3e46f5a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user