aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-28 13:32:50 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-28 13:32:50 -0400
commit110d1e6fbef39959f7c7b99eca6bbb0bc41dc218 (patch)
tree49ba780a161e5170b6790db675f3034c40db3f09 /MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs
parent969bc00098f8069862d5049c296b905826868ada (diff)
removed swallowed exceptions
Diffstat (limited to 'MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs b/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs
index 284ef10fb..d378809ff 100644
--- a/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs
+++ b/MediaBrowser.Server.Implementations/Sqlite/SQLiteUserDataRepository.cs
@@ -203,6 +203,8 @@ namespace MediaBrowser.Server.Implementations.Sqlite
{
transaction.Rollback();
}
+
+ throw;
}
catch (Exception e)
{
@@ -212,6 +214,8 @@ namespace MediaBrowser.Server.Implementations.Sqlite
{
transaction.Rollback();
}
+
+ throw;
}
finally
{