#UI_ENHANCEMENT by cg
authorClaus Gittinger <cg@exept.de>
Thu, 12 Jan 2017 18:42:59 +0100
changeset 17213 e0212d9e3913
parent 17212 fcc7e86f76d2
child 17222 e5c7faf32eda
#UI_ENHANCEMENT by cg class: AbstractLauncherApplication
AbstractLauncherApplication.st
--- a/AbstractLauncherApplication.st	Thu Jan 12 15:03:06 2017 +0100
+++ b/AbstractLauncherApplication.st	Thu Jan 12 18:42:59 2017 +0100
@@ -7679,10 +7679,10 @@
 
                 path := pathByItem at:someItem ifAbsent:nil.
                 path isNil ifTrue:[
-                    (Dialog information:'package ID inconsistency - cannot load...').
+                    Dialog information:('package load failed: %1' bindWith:ex description).
                 ] ifFalse:[    
                     "/ try to load the file as is (i.e. not via package-id
-                    (Dialog information:'package ID inconsistency - loading file directly...').
+                    Dialog information:('package load failed: %1\\Loading file directly...' bindWith:ex description).
                     Smalltalk fileIn:(packageDirPath asFilename / path).
                 ].
             ]