class: ClassDescription
authorClaus Gittinger <cg@exept.de>
Sat, 17 May 2014 14:40:18 +0200
changeset 16471 aaabfd376e0f
parent 16470 94bfe026a2cc
child 16472 6d33536e4fa4
class: ClassDescription changed: #changesStream better error message if the changefile cannot be written
ClassDescription.st
--- a/ClassDescription.st	Sat May 17 14:39:41 2014 +0200
+++ b/ClassDescription.st	Sat May 17 14:40:18 2014 +0200
@@ -1535,7 +1535,8 @@
     [
         changesStream := streamType fileNamed:fileName.
     ] on:FileStream openErrorSignal do:[:ex|
-        self warn:'Cannot create/update the changes file (check permissions)'.
+        self warn:('%2\\Cannot create/update the changes file "%1"\please check the path and/or permissions' withCRs
+                   bindWith:fileName with:ex description).
         ^ nil
     ].
 
@@ -4342,11 +4343,11 @@
 !ClassDescription class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.255 2014-03-25 16:01:40 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.256 2014-05-17 12:40:18 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.255 2014-03-25 16:01:40 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.256 2014-05-17 12:40:18 cg Exp $'
 ! !