comments
authorClaus Gittinger <cg@exept.de>
Thu, 24 Apr 2003 10:17:51 +0200
changeset 7231 5e1250b3f7f6
parent 7230 82934cb163d4
child 7232 1d05a293b8b0
comments
BadLiteralsError.st
ExecutionError.st
InvalidByteCodeError.st
InvalidCodeError.st
InvalidInstructionError.st
NoByteCodeError.st
NonBooleanReceiverError.st
WrongNumberOfArgumentsError.st
--- a/BadLiteralsError.st	Wed Apr 23 19:25:18 2003 +0200
+++ b/BadLiteralsError.st	Thu Apr 24 10:17:51 2003 +0200
@@ -7,9 +7,16 @@
 	category:'Kernel-Exceptions-ExecutionErrors'
 !
 
+!BadLiteralsError class methodsFor:'documentation'!
+
+documentation
+"
+    Triggered by the VM, if an invalid literal array is encountered in a method/block
+"
+! !
 
 !BadLiteralsError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/BadLiteralsError.st,v 1.1 2003-03-31 14:08:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/BadLiteralsError.st,v 1.2 2003-04-24 08:17:42 cg Exp $'
 ! !
--- a/ExecutionError.st	Wed Apr 23 19:25:18 2003 +0200
+++ b/ExecutionError.st	Thu Apr 24 10:17:51 2003 +0200
@@ -7,9 +7,16 @@
 	category:'Kernel-Exceptions-ExecutionErrors'
 !
 
+!ExecutionError class methodsFor:'documentation'!
+
+documentation
+"
+    Common parent of execution-related errors
+"
+! !
 
 !ExecutionError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExecutionError.st,v 1.1 2003-03-31 14:07:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExecutionError.st,v 1.2 2003-04-24 08:17:45 cg Exp $'
 ! !
--- a/InvalidByteCodeError.st	Wed Apr 23 19:25:18 2003 +0200
+++ b/InvalidByteCodeError.st	Thu Apr 24 10:17:51 2003 +0200
@@ -7,9 +7,16 @@
 	category:'Kernel-Exceptions-ExecutionErrors'
 !
 
+!InvalidByteCodeError class methodsFor:'documentation'!
+
+documentation
+"
+    Triggered by the VM, if an invalid bytecode is encountered in a method/block
+"
+! !
 
 !InvalidByteCodeError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/InvalidByteCodeError.st,v 1.1 2003-03-31 14:08:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/InvalidByteCodeError.st,v 1.2 2003-04-24 08:17:46 cg Exp $'
 ! !
--- a/InvalidCodeError.st	Wed Apr 23 19:25:18 2003 +0200
+++ b/InvalidCodeError.st	Thu Apr 24 10:17:51 2003 +0200
@@ -7,9 +7,16 @@
 	category:'Kernel-Exceptions-ExecutionErrors'
 !
 
+!InvalidCodeError class methodsFor:'documentation'!
+
+documentation
+"
+    Triggered by the VM, if an invalid code object is encountered in a method/block
+"
+! !
 
 !InvalidCodeError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/InvalidCodeError.st,v 1.1 2003-03-31 14:07:10 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/InvalidCodeError.st,v 1.2 2003-04-24 08:17:43 cg Exp $'
 ! !
--- a/InvalidInstructionError.st	Wed Apr 23 19:25:18 2003 +0200
+++ b/InvalidInstructionError.st	Thu Apr 24 10:17:51 2003 +0200
@@ -7,9 +7,16 @@
 	category:'Kernel-Exceptions-ExecutionErrors'
 !
 
+!InvalidInstructionError class methodsFor:'documentation'!
+
+documentation
+"
+    Triggered by the VM, if an invalid instruction is encountered in a method/block
+"
+! !
 
 !InvalidInstructionError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/InvalidInstructionError.st,v 1.1 2003-03-31 14:07:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/InvalidInstructionError.st,v 1.2 2003-04-24 08:17:51 cg Exp $'
 ! !
--- a/NoByteCodeError.st	Wed Apr 23 19:25:18 2003 +0200
+++ b/NoByteCodeError.st	Thu Apr 24 10:17:51 2003 +0200
@@ -7,9 +7,16 @@
 	category:'Kernel-Exceptions-ExecutionErrors'
 !
 
+!NoByteCodeError class methodsFor:'documentation'!
+
+documentation
+"
+    Triggered by the VM, if an method/block without code is to be executed
+"
+! !
 
 !NoByteCodeError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NoByteCodeError.st,v 1.1 2003-03-31 14:07:29 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NoByteCodeError.st,v 1.2 2003-04-24 08:17:40 cg Exp $'
 ! !
--- a/NonBooleanReceiverError.st	Wed Apr 23 19:25:18 2003 +0200
+++ b/NonBooleanReceiverError.st	Thu Apr 24 10:17:51 2003 +0200
@@ -7,9 +7,16 @@
 	category:'Kernel-Exceptions-ExecutionErrors'
 !
 
+!NonBooleanReceiverError class methodsFor:'documentation'!
+
+documentation
+"
+    Triggered by the VM, if a non-boolean is encountered in an inlined if or while
+"
+! !
 
 !NonBooleanReceiverError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NonBooleanReceiverError.st,v 1.1 2003-03-31 14:08:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NonBooleanReceiverError.st,v 1.2 2003-04-24 08:17:48 cg Exp $'
 ! !
--- a/WrongNumberOfArgumentsError.st	Wed Apr 23 19:25:18 2003 +0200
+++ b/WrongNumberOfArgumentsError.st	Thu Apr 24 10:17:51 2003 +0200
@@ -7,9 +7,16 @@
 	category:'Kernel-Exceptions-ExecutionErrors'
 !
 
+!WrongNumberOfArgumentsError class methodsFor:'documentation'!
+
+documentation
+"
+    Triggered by the VM, if a method/block is called with a wrong number of arguments
+"
+! !
 
 !WrongNumberOfArgumentsError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/WrongNumberOfArgumentsError.st,v 1.1 2003-03-31 14:07:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/WrongNumberOfArgumentsError.st,v 1.2 2003-04-24 08:17:49 cg Exp $'
 ! !