ZooFlow: Small fix for init user errors
This commit is contained in:
parent
85ddf68794
commit
76d10a7374
@ -176,9 +176,13 @@ Public Class ClassInit
|
||||
End Select
|
||||
Next
|
||||
|
||||
Catch ex As InitException
|
||||
Logger.Error(ex)
|
||||
Throw ex
|
||||
|
||||
Catch ex As Exception
|
||||
Logger.Error(ex)
|
||||
Throw New InitException("Error while initializing user!", ex)
|
||||
Throw New InitException($"Unexpected error while initializing user!", ex)
|
||||
End Try
|
||||
End Sub
|
||||
Private Sub InitializeLanguage(MyApplication As My.MyApplication)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user