Fix Tool manager Siemens

This commit is contained in:
Nicola Carminati
2019-01-22 13:00:00 +01:00
parent e52e9128e8
commit dbbbecd2e5
9 changed files with 52 additions and 14 deletions
+4 -1
View File
@@ -43,7 +43,10 @@ namespace Step.Config
}
catch (Exception ex)
{
ExceptionManager.Manage(ERROR_LEVEL.FATAL, ex.Message);
var message = ex.Message;
if (ex.InnerException != null)
message += "\n"+ex.InnerException.Message;
ExceptionManager.Manage(ERROR_LEVEL.FATAL, message);
}
}