EDMI: Fixes

This commit is contained in:
Jonathan Jenne
2021-02-02 16:06:41 +01:00
parent b5120e4115
commit b63c1b5052
2 changed files with 36 additions and 24 deletions

View File

@@ -215,9 +215,19 @@ Public Class Client
.AccessRight = oResponse.FileRight,
.FullPath = oResponse.FullPath
}
Catch ex As FaultException(Of ObjectDoesNotExistFault)
_logger.Error(ex)
Throw ex
Catch ex As FaultException
_logger.Error(ex)
Throw ex
Catch ex As Exception
_logger.Error(ex)
Throw ex
End Try
End Function