Skip to content

Commit

Permalink
Exception catch. DNET-510
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Jul 24, 2013
1 parent bfa16b4 commit 4b092c1
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -448,7 +448,11 @@ protected override bool DbDatabaseExists(DbConnection connection, int? commandTi
}
finally
{
connection.Close();
try
{
connection.Close();
}
catch { }
}
}
}
Expand Down

0 comments on commit 4b092c1

Please sign in to comment.