ZooFlow: Small fix for init user errors

This commit is contained in:
Jonathan Jenne 2021-11-03 12:01:58 +01:00
parent 85ddf68794
commit 76d10a7374

View File

@ -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)