*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 29 Aug 2003 21:15:21 +0200
changeset 7586 63e4900c8931
parent 7585 87d76b40f897
child 7587 89864caa2665
*** empty log message ***
ArithmeticError.st
BadRomanNumberFormatError.st
DomainError.st
Error.st
ImaginaryResultError.st
IncompleteNextCountError.st
IndexNotFoundError.st
MessageNotUnderstood.st
NaiveRomanNumberFormatNotification.st
NoHandlerError.st
NonIntegerIndexError.st
NotFoundError.st
NumberConversionError.st
NumberFormatError.st
OverflowError.st
PositionOutOfBoundsError.st
PrimitiveFailure.st
ProceedError.st
ProceedableError.st
RangeError.st
RecursionError.st
RecursiveExceptionError.st
RomanNumberFormatError.st
StreamError.st
SubclassResponsibilityError.st
SubscriptOutOfBoundsError.st
TimeoutError.st
UnderflowError.st
WrongProceedabilityError.st
--- a/ArithmeticError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/ArithmeticError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 Error subclass:#ArithmeticError
@@ -9,6 +21,20 @@
 
 !ArithmeticError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     ArithmeticError is the Superclass for arithmetic errors.
@@ -36,6 +62,7 @@
 !ArithmeticError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ArithmeticError.st,v 1.3 2002-07-31 14:35:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ArithmeticError.st,v 1.4 2003-08-29 19:15:00 cg Exp $'
 ! !
+
 ArithmeticError initialize!
--- a/BadRomanNumberFormatError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/BadRomanNumberFormatError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 RomanNumberFormatError subclass:#BadRomanNumberFormatError
@@ -7,9 +19,24 @@
 	category:'Kernel-Exceptions-Errors'
 !
 
+!BadRomanNumberFormatError class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+! !
 
 !BadRomanNumberFormatError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/BadRomanNumberFormatError.st,v 1.1 2002-07-31 13:14:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/BadRomanNumberFormatError.st,v 1.2 2003-08-29 19:15:04 cg Exp $'
 ! !
--- a/DomainError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/DomainError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 ArithmeticError subclass:#DomainError
@@ -9,6 +21,20 @@
 
 !DomainError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     Raised by certain mathematical functions when the function-args
@@ -29,6 +55,7 @@
 !DomainError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/DomainError.st,v 1.3 2002-07-31 14:35:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/DomainError.st,v 1.4 2003-08-29 19:14:53 cg Exp $'
 ! !
+
 DomainError initialize!
--- a/Error.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/Error.st	Fri Aug 29 21:15:21 2003 +0200
@@ -73,6 +73,7 @@
 !Error class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Error.st,v 1.6 2001-11-17 10:03:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Error.st,v 1.7 2003-08-29 19:15:20 cg Exp $'
 ! !
+
 Error initialize!
--- a/ImaginaryResultError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/ImaginaryResultError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2003 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 DomainError subclass:#ImaginaryResultError
@@ -9,6 +21,20 @@
 
 !ImaginaryResultError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2003 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     Raised by square root functions when the functions-arg is negative,
@@ -29,7 +55,7 @@
 !ImaginaryResultError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ImaginaryResultError.st,v 1.1 2003-06-17 14:04:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ImaginaryResultError.st,v 1.2 2003-08-29 19:15:11 cg Exp $'
 ! !
 
 ImaginaryResultError initialize!
--- a/IncompleteNextCountError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/IncompleteNextCountError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 StreamError subclass:#IncompleteNextCountError
@@ -9,6 +21,20 @@
 
 !IncompleteNextCountError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     There are not enough elements to complete the requested operation.
@@ -38,6 +64,7 @@
 !IncompleteNextCountError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/IncompleteNextCountError.st,v 1.1 2001-12-21 16:36:26 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/IncompleteNextCountError.st,v 1.2 2003-08-29 19:14:43 cg Exp $'
 ! !
+
 IncompleteNextCountError initialize!
--- a/IndexNotFoundError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/IndexNotFoundError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 NotFoundError subclass:#IndexNotFoundError
@@ -9,6 +21,20 @@
 
 !IndexNotFoundError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     raised when a bad index/key is used when accessing a collection.
@@ -18,5 +44,5 @@
 !IndexNotFoundError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/IndexNotFoundError.st,v 1.2 2001-11-17 10:04:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/IndexNotFoundError.st,v 1.3 2003-08-29 19:14:40 cg Exp $'
 ! !
--- a/MessageNotUnderstood.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/MessageNotUnderstood.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 Error subclass:#MessageNotUnderstood
@@ -9,6 +21,20 @@
 
 !MessageNotUnderstood class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     raised when a message is sent to an object, which is not understood
@@ -99,5 +125,5 @@
 !MessageNotUnderstood class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/MessageNotUnderstood.st,v 1.6 2002-07-25 15:51:57 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/MessageNotUnderstood.st,v 1.7 2003-08-29 19:15:14 cg Exp $'
 ! !
--- a/NaiveRomanNumberFormatNotification.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/NaiveRomanNumberFormatNotification.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 Notification subclass:#NaiveRomanNumberFormatNotification
@@ -7,9 +19,24 @@
 	category:'Kernel-Exceptions-Errors'
 !
 
+!NaiveRomanNumberFormatNotification class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+! !
 
 !NaiveRomanNumberFormatNotification class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NaiveRomanNumberFormatNotification.st,v 1.1 2002-07-31 13:14:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NaiveRomanNumberFormatNotification.st,v 1.2 2003-08-29 19:14:49 cg Exp $'
 ! !
--- a/NoHandlerError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/NoHandlerError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -262,6 +262,7 @@
 !NoHandlerError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NoHandlerError.st,v 1.8 2001-11-17 10:04:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NoHandlerError.st,v 1.9 2003-08-29 19:15:06 cg Exp $'
 ! !
+
 NoHandlerError initialize!
--- a/NonIntegerIndexError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/NonIntegerIndexError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 IndexNotFoundError subclass:#NonIntegerIndexError
@@ -9,6 +21,20 @@
 
 !NonIntegerIndexError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     raised when a non-integer index is used when accessing an 
@@ -19,5 +45,5 @@
 !NonIntegerIndexError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NonIntegerIndexError.st,v 1.2 2001-11-17 10:03:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NonIntegerIndexError.st,v 1.3 2003-08-29 19:15:18 cg Exp $'
 ! !
--- a/NotFoundError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/NotFoundError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 Error subclass:#NotFoundError
@@ -9,6 +21,20 @@
 
 !NotFoundError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     raised when a value was not found in a collection
@@ -27,5 +53,5 @@
 !NotFoundError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NotFoundError.st,v 1.2 2001-11-17 10:04:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NotFoundError.st,v 1.3 2003-08-29 19:14:47 cg Exp $'
 ! !
--- a/NumberConversionError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/NumberConversionError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 ArithmeticError subclass:#NumberConversionError
@@ -7,9 +19,24 @@
 	category:'Kernel-Exceptions-Errors'
 !
 
+!NumberConversionError class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+! !
 
 !NumberConversionError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NumberConversionError.st,v 1.1 2002-07-31 10:32:50 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NumberConversionError.st,v 1.2 2003-08-29 19:14:54 cg Exp $'
 ! !
--- a/NumberFormatError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/NumberFormatError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 NumberConversionError subclass:#NumberFormatError
@@ -7,9 +19,24 @@
 	category:'Kernel-Exceptions-Errors'
 !
 
+!NumberFormatError class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+! !
 
 !NumberFormatError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NumberFormatError.st,v 1.1 2002-07-31 10:33:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NumberFormatError.st,v 1.2 2003-08-29 19:15:15 cg Exp $'
 ! !
--- a/OverflowError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/OverflowError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 RangeError subclass:#OverflowError
@@ -7,6 +19,21 @@
 	category:'Kernel-Exceptions-Errors'
 !
 
+!OverflowError class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+! !
 
 !OverflowError class methodsFor:'initialization'!
 
@@ -17,6 +44,7 @@
 !OverflowError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/OverflowError.st,v 1.2 2002-07-31 14:33:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OverflowError.st,v 1.3 2003-08-29 19:14:41 cg Exp $'
 ! !
+
 OverflowError initialize!
--- a/PositionOutOfBoundsError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/PositionOutOfBoundsError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 StreamError subclass:#PositionOutOfBoundsError
@@ -9,6 +21,20 @@
 
 !PositionOutOfBoundsError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     Raised when an invalid postioning operation is attempted 
@@ -18,5 +44,5 @@
 !PositionOutOfBoundsError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/PositionOutOfBoundsError.st,v 1.2 2003-04-24 08:20:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PositionOutOfBoundsError.st,v 1.3 2003-08-29 19:14:46 cg Exp $'
 ! !
--- a/PrimitiveFailure.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/PrimitiveFailure.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 ProceedableError subclass:#PrimitiveFailure
@@ -9,6 +21,20 @@
 
 !PrimitiveFailure class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     Raised when a primitive C-code method failed to perform its operation
@@ -19,5 +45,5 @@
 !PrimitiveFailure class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/PrimitiveFailure.st,v 1.3 2003-04-24 08:20:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PrimitiveFailure.st,v 1.4 2003-08-29 19:15:09 cg Exp $'
 ! !
--- a/ProceedError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/ProceedError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -100,6 +100,7 @@
 !ProceedError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProceedError.st,v 1.4 2001-11-17 10:04:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProceedError.st,v 1.5 2003-08-29 19:14:59 cg Exp $'
 ! !
+
 ProceedError initialize!
--- a/ProceedableError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/ProceedableError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -73,6 +73,7 @@
 !ProceedableError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProceedableError.st,v 1.4 2001-11-17 10:04:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProceedableError.st,v 1.5 2003-08-29 19:15:09 cg Exp $'
 ! !
+
 ProceedableError initialize!
--- a/RangeError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/RangeError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 ArithmeticError subclass:#RangeError
@@ -7,6 +19,21 @@
 	category:'Kernel-Exceptions-Errors'
 !
 
+!RangeError class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+! !
 
 !RangeError class methodsFor:'initialization'!
 
@@ -17,6 +44,7 @@
 !RangeError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/RangeError.st,v 1.3 2002-07-31 14:35:06 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/RangeError.st,v 1.4 2003-08-29 19:15:21 cg Exp $'
 ! !
+
 RangeError initialize!
--- a/RecursionError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/RecursionError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 Error subclass:#RecursionError
@@ -9,6 +21,20 @@
 
 !RecursionError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     Raised when the recursion level is too high - i.e. the execution stack
@@ -29,5 +55,5 @@
 !RecursionError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/RecursionError.st,v 1.4 2003-04-24 08:20:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/RecursionError.st,v 1.5 2003-08-29 19:14:56 cg Exp $'
 ! !
--- a/RecursiveExceptionError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/RecursiveExceptionError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -75,6 +75,7 @@
 !RecursiveExceptionError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/RecursiveExceptionError.st,v 1.3 2001-11-17 10:03:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/RecursiveExceptionError.st,v 1.4 2003-08-29 19:14:57 cg Exp $'
 ! !
+
 RecursiveExceptionError initialize!
--- a/RomanNumberFormatError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/RomanNumberFormatError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 NumberFormatError subclass:#RomanNumberFormatError
@@ -7,9 +19,24 @@
 	category:'Kernel-Exceptions-Errors'
 !
 
+!RomanNumberFormatError class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+! !
 
 !RomanNumberFormatError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/RomanNumberFormatError.st,v 1.2 2002-07-31 13:15:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/RomanNumberFormatError.st,v 1.3 2003-08-29 19:14:44 cg Exp $'
 ! !
--- a/StreamError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/StreamError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 ProceedableError subclass:#StreamError
@@ -9,6 +21,20 @@
 
 !StreamError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     The parent of all stream errors.
@@ -18,5 +44,5 @@
 !StreamError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/StreamError.st,v 1.3 2003-04-24 08:20:17 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/StreamError.st,v 1.4 2003-08-29 19:15:12 cg Exp $'
 ! !
--- a/SubclassResponsibilityError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/SubclassResponsibilityError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 ProceedableError subclass:#SubclassResponsibilityError
@@ -9,6 +21,20 @@
 
 !SubclassResponsibilityError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     Raised when a method which should have been reimplemented by a
@@ -27,7 +53,7 @@
 !SubclassResponsibilityError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SubclassResponsibilityError.st,v 1.5 2003-06-10 07:59:45 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SubclassResponsibilityError.st,v 1.6 2003-08-29 19:15:17 cg Exp $'
 ! !
 
 SubclassResponsibilityError initialize!
--- a/SubscriptOutOfBoundsError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/SubscriptOutOfBoundsError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 IndexNotFoundError subclass:#SubscriptOutOfBoundsError
@@ -9,6 +21,20 @@
 
 !SubscriptOutOfBoundsError class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2001 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     Raised when the index was ouf of a collections valid range for the index
@@ -19,5 +45,5 @@
 !SubscriptOutOfBoundsError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SubscriptOutOfBoundsError.st,v 1.3 2003-04-24 08:20:15 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SubscriptOutOfBoundsError.st,v 1.4 2003-08-29 19:15:03 cg Exp $'
 ! !
--- a/TimeoutError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/TimeoutError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -77,6 +77,7 @@
 !TimeoutError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/TimeoutError.st,v 1.3 2001-11-17 10:04:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/TimeoutError.st,v 1.4 2003-08-29 19:15:07 cg Exp $'
 ! !
+
 TimeoutError initialize!
--- a/UnderflowError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/UnderflowError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
 "{ Package: 'stx:libbasic' }"
 
 RangeError subclass:#UnderflowError
@@ -7,6 +19,21 @@
 	category:'Kernel-Exceptions-Errors'
 !
 
+!UnderflowError class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2002 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+! !
 
 !UnderflowError class methodsFor:'initialization'!
 
@@ -17,6 +44,7 @@
 !UnderflowError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UnderflowError.st,v 1.2 2002-07-31 14:34:10 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnderflowError.st,v 1.3 2003-08-29 19:14:51 cg Exp $'
 ! !
+
 UnderflowError initialize!
--- a/WrongProceedabilityError.st	Fri Aug 29 21:10:44 2003 +0200
+++ b/WrongProceedabilityError.st	Fri Aug 29 21:15:21 2003 +0200
@@ -67,6 +67,7 @@
 !WrongProceedabilityError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/WrongProceedabilityError.st,v 1.3 2001-11-17 10:04:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/WrongProceedabilityError.st,v 1.4 2003-08-29 19:14:38 cg Exp $'
 ! !
+
 WrongProceedabilityError initialize!