initial checkin
authorClaus Gittinger <cg@exept.de>
Fri, 07 Sep 2001 12:37:14 +0200
changeset 5975 25a24298a177
parent 5974 8750a2aad781
child 5976 4596197c1e0d
initial checkin
IndexNotFoundError.st
NonIntegerIndexError.st
NotFoundError.st
SubscriptOutOfBoundsError.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/IndexNotFoundError.st	Fri Sep 07 12:37:14 2001 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+NotFoundError subclass:#IndexNotFoundError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions'
+!
+
+
+!IndexNotFoundError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/IndexNotFoundError.st,v 1.1 2001-09-07 10:37:00 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NonIntegerIndexError.st	Fri Sep 07 12:37:14 2001 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+IndexNotFoundError subclass:#NonIntegerIndexError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions'
+!
+
+
+!NonIntegerIndexError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/NonIntegerIndexError.st,v 1.1 2001-09-07 10:36:28 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NotFoundError.st	Fri Sep 07 12:37:14 2001 +0200
@@ -0,0 +1,24 @@
+"{ Package: 'stx:libbasic' }"
+
+Error subclass:#NotFoundError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions'
+!
+
+
+!NotFoundError class methodsFor:'queries'!
+
+mayProceed
+    "By default, not found errors are proceedable (with nil).
+     Subclasses may change this"
+
+    ^ true
+! !
+
+!NotFoundError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/NotFoundError.st,v 1.1 2001-09-07 10:37:14 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SubscriptOutOfBoundsError.st	Fri Sep 07 12:37:14 2001 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+IndexNotFoundError subclass:#SubscriptOutOfBoundsError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions'
+!
+
+
+!SubscriptOutOfBoundsError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/SubscriptOutOfBoundsError.st,v 1.1 2001-09-07 10:36:46 cg Exp $'
+! !