NonBooleanReceiverError.st
changeset 7587 89864caa2665
parent 7231 5e1250b3f7f6
child 7602 d048f13cd50a
equal deleted inserted replaced
7586:63e4900c8931 7587:89864caa2665
       
     1 "
       
     2  COPYRIGHT (c) 2003 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
     1 "{ Package: 'stx:libbasic' }"
    13 "{ Package: 'stx:libbasic' }"
     2 
    14 
     3 ExecutionError subclass:#NonBooleanReceiverError
    15 ExecutionError subclass:#NonBooleanReceiverError
     4 	instanceVariableNames:''
    16 	instanceVariableNames:''
     5 	classVariableNames:''
    17 	classVariableNames:''
     7 	category:'Kernel-Exceptions-ExecutionErrors'
    19 	category:'Kernel-Exceptions-ExecutionErrors'
     8 !
    20 !
     9 
    21 
    10 !NonBooleanReceiverError class methodsFor:'documentation'!
    22 !NonBooleanReceiverError class methodsFor:'documentation'!
    11 
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 2003 by eXept Software AG
       
    27               All Rights Reserved
       
    28 
       
    29  This software is furnished under a license and may be used
       
    30  only in accordance with the terms of that license and with the
       
    31  inclusion of the above copyright notice.   This software may not
       
    32  be provided or otherwise made available to, or used by, any
       
    33  other person.  No title to or ownership of the software is
       
    34  hereby transferred.
       
    35 "
       
    36 !
       
    37 
    12 documentation
    38 documentation
    13 "
    39 "
    14     Triggered by the VM, if a non-boolean is encountered in an inlined if or while
    40     Triggered by the VM, if a non-boolean is encountered in an inlined if or while
    15 "
    41 "
    16 ! !
    42 ! !
    17 
    43 
    18 !NonBooleanReceiverError class methodsFor:'documentation'!
    44 !NonBooleanReceiverError class methodsFor:'documentation'!
    19 
    45 
    20 version
    46 version
    21     ^ '$Header: /cvs/stx/stx/libbasic/NonBooleanReceiverError.st,v 1.2 2003-04-24 08:17:48 cg Exp $'
    47     ^ '$Header: /cvs/stx/stx/libbasic/NonBooleanReceiverError.st,v 1.3 2003-08-29 19:16:32 cg Exp $'
    22 ! !
    48 ! !