Skip to content

Commit 7523905

Browse files
authored
Merge pull request #1214 from JMLF/fix/betterException
Better error message when accessing value throw an exception
2 parents f8ab8de + 9b1d9d7 commit 7523905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NewTools-Inspector/StInspectorTempNode.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ StInspectorTempNode >> rawValue [
5050
"we use #tempNamed: to force a re-lookup of the variable"
5151
self hostObject tempNamed: tempVariable name]
5252
on: Exception
53-
do: [ :err | 'cannot read ' , tempVariable name ]
53+
do: [ :err | 'Error: ' , err messageText ]
5454
]
5555

5656
{ #category : 'accessing' }

0 commit comments

Comments
 (0)