diff --git a/GUIs.ZooFlow/ClassInit.vb b/GUIs.ZooFlow/ClassInit.vb index c49d89e0..d7153d26 100644 --- a/GUIs.ZooFlow/ClassInit.vb +++ b/GUIs.ZooFlow/ClassInit.vb @@ -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)