diff -r 63e4900c8931 -r 89864caa2665 NonBooleanReceiverError.st --- a/NonBooleanReceiverError.st Fri Aug 29 21:15:21 2003 +0200 +++ b/NonBooleanReceiverError.st Fri Aug 29 21:16:52 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' }" ExecutionError subclass:#NonBooleanReceiverError @@ -9,6 +21,20 @@ !NonBooleanReceiverError 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 " Triggered by the VM, if a non-boolean is encountered in an inlined if or while @@ -18,5 +44,5 @@ !NonBooleanReceiverError class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/NonBooleanReceiverError.st,v 1.2 2003-04-24 08:17:48 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/NonBooleanReceiverError.st,v 1.3 2003-08-29 19:16:32 cg Exp $' ! !