Database: fix missing message on exception
This commit is contained in:
parent
a415f90906
commit
b16050cfc6
@ -111,7 +111,7 @@ Public Class MSSQLServer
|
|||||||
|
|
||||||
Private Function MaybeGetTransaction(Connection As SqlConnection, Mode As TransactionMode, Transaction As SqlTransaction) As SqlTransaction
|
Private Function MaybeGetTransaction(Connection As SqlConnection, Mode As TransactionMode, Transaction As SqlTransaction) As SqlTransaction
|
||||||
If Connection Is Nothing Then
|
If Connection Is Nothing Then
|
||||||
Throw New ArgumentNullException("Connection")
|
Throw New ArgumentNullException("Connection", "Could not get transaction because connection is null!")
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If Mode = TransactionMode.NoTransaction Then
|
If Mode = TransactionMode.NoTransaction Then
|
||||||
@ -269,7 +269,7 @@ Public Class MSSQLServer
|
|||||||
Try
|
Try
|
||||||
If pConnectionString Is Nothing OrElse pConnectionString.Length = 0 Then
|
If pConnectionString Is Nothing OrElse pConnectionString.Length = 0 Then
|
||||||
Logger.Warn("Connection String is empty!")
|
Logger.Warn("Connection String is empty!")
|
||||||
Throw New ArgumentNullException("pConnectionString")
|
Throw New ArgumentNullException("pConnectionString", "Could not mask connection string because connectiong string is empty!")
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Dim oBuilder As New SqlConnectionStringBuilder() With {.ConnectionString = pConnectionString}
|
Dim oBuilder As New SqlConnectionStringBuilder() With {.ConnectionString = pConnectionString}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user