JavaVM.st
changeset 539 2f2124b4d0c1
parent 537 28e26396d17d
child 540 aed82cbbd8de
--- a/JavaVM.st	Sun Jan 10 17:21:20 1999 +0000
+++ b/JavaVM.st	Fri Jan 15 05:39:27 1999 +0000
@@ -1459,7 +1459,7 @@
         'java.lang.System'
     ) do:[:cName |
         (Java classForName:cName) isNil ifTrue:[
-            self halt:('could not find required class:' , cName)
+            self halt:('JavaVM: could not find required class:' , cName)
         ]
     ].
 
@@ -11501,6 +11501,6 @@
 !JavaVM class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.131 1999/01/10 17:18:24 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.132 1999/01/15 05:39:27 cg Exp $'
 ! !
 JavaVM initialize!