initial checkin
authorClaus Gittinger <cg@exept.de>
Mon, 31 Mar 2003 16:08:28 +0200
changeset 7145 a2a21668f317
parent 7144 97985676780d
child 7146 f3ba0d0bffcc
initial checkin
ArgumentError.st
BadLiteralsError.st
ExecutionError.st
InvalidByteCodeError.st
InvalidCodeError.st
InvalidCodeException.st
InvalidInstructionError.st
NoByteCodeError.st
NonBooleanReceiverError.st
WrongNumberOfArgumentsError.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ArgumentError.st	Mon Mar 31 16:08:28 2003 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+ExecutionError subclass:#ArgumentError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-ExecutionErrors'
+!
+
+
+!ArgumentError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/ArgumentError.st,v 1.1 2003-03-31 14:07:38 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/BadLiteralsError.st	Mon Mar 31 16:08:28 2003 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+InvalidCodeError subclass:#BadLiteralsError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-ExecutionErrors'
+!
+
+
+!BadLiteralsError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/BadLiteralsError.st,v 1.1 2003-03-31 14:08:28 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ExecutionError.st	Mon Mar 31 16:08:28 2003 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+ProceedableError subclass:#ExecutionError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-ExecutionErrors'
+!
+
+
+!ExecutionError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/ExecutionError.st,v 1.1 2003-03-31 14:07:20 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/InvalidByteCodeError.st	Mon Mar 31 16:08:28 2003 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+InvalidCodeError subclass:#InvalidByteCodeError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-ExecutionErrors'
+!
+
+
+!InvalidByteCodeError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/InvalidByteCodeError.st,v 1.1 2003-03-31 14:08:11 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/InvalidCodeError.st	Mon Mar 31 16:08:28 2003 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+ExecutionError subclass:#InvalidCodeError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-ExecutionErrors'
+!
+
+
+!InvalidCodeError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/InvalidCodeError.st,v 1.1 2003-03-31 14:07:10 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/InvalidCodeException.st	Mon Mar 31 16:08:28 2003 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+ExecutionException subclass:#InvalidCodeException
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-ExecutionErrors'
+!
+
+
+!InvalidCodeException class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/InvalidCodeException.st,v 1.1 2003-03-31 14:08:03 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/InvalidInstructionError.st	Mon Mar 31 16:08:28 2003 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+InvalidCodeError subclass:#InvalidInstructionError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-ExecutionErrors'
+!
+
+
+!InvalidInstructionError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/InvalidInstructionError.st,v 1.1 2003-03-31 14:07:54 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NoByteCodeError.st	Mon Mar 31 16:08:28 2003 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+InvalidCodeError subclass:#NoByteCodeError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-ExecutionErrors'
+!
+
+
+!NoByteCodeError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/NoByteCodeError.st,v 1.1 2003-03-31 14:07:29 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NonBooleanReceiverError.st	Mon Mar 31 16:08:28 2003 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+ExecutionError subclass:#NonBooleanReceiverError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-ExecutionErrors'
+!
+
+
+!NonBooleanReceiverError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/NonBooleanReceiverError.st,v 1.1 2003-03-31 14:08:20 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WrongNumberOfArgumentsError.st	Mon Mar 31 16:08:28 2003 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+ArgumentError subclass:#WrongNumberOfArgumentsError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-ExecutionErrors'
+!
+
+
+!WrongNumberOfArgumentsError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/WrongNumberOfArgumentsError.st,v 1.1 2003-03-31 14:07:47 cg Exp $'
+! !