removed swallowed exceptions

This commit is contained in:
Luke Pulverenti
2013-05-28 13:32:50 -04:00
parent 969bc00098
commit 110d1e6fbe
5 changed files with 27 additions and 35 deletions

View File

@@ -148,6 +148,8 @@ namespace MediaBrowser.Server.Implementations.Sqlite
{
transaction.Rollback();
}
throw;
}
catch (Exception e)
{
@@ -157,6 +159,8 @@ namespace MediaBrowser.Server.Implementations.Sqlite
{
transaction.Rollback();
}
throw;
}
finally
{