InvalidTypeError.st
changeset 14470 04031f10df46
child 18011 deb0c3355881
equal deleted inserted replaced
14469:239e909bf765 14470:04031f10df46
       
     1 "
       
     2  COPYRIGHT (c) 2012 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 "{ Package: 'stx:libbasic' }"
       
    13 
       
    14 ExecutionError subclass:#InvalidTypeError
       
    15 	instanceVariableNames:''
       
    16 	classVariableNames:''
       
    17 	poolDictionaries:''
       
    18 	category:'Kernel-Exceptions-ExecutionErrors'
       
    19 !
       
    20 
       
    21 !InvalidTypeError class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 2012 by eXept Software AG
       
    26               All Rights Reserved
       
    27 
       
    28  This software is furnished under a license and may be used
       
    29  only in accordance with the terms of that license and with the
       
    30  inclusion of the above copyright notice.   This software may not
       
    31  be provided or otherwise made available to, or used by, any
       
    32  other person.  No title to or ownership of the software is
       
    33  hereby transferred.
       
    34 "
       
    35 !
       
    36 
       
    37 documentation
       
    38 "
       
    39     Common error raised when some object has an unexpected type
       
    40 "
       
    41 ! !
       
    42 
       
    43 !InvalidTypeError class methodsFor:'initialization'!
       
    44 
       
    45 initialize
       
    46     NotifierString := 'if/while on non-boolean receiver'.
       
    47 ! !
       
    48 
       
    49 !InvalidTypeError class methodsFor:'documentation'!
       
    50 
       
    51 version
       
    52     ^ '$Header: /cvs/stx/stx/libbasic/InvalidTypeError.st,v 1.1 2012-11-02 09:19:52 cg Exp $'
       
    53 !
       
    54 
       
    55 version_CVS
       
    56     ^ '$Header: /cvs/stx/stx/libbasic/InvalidTypeError.st,v 1.1 2012-11-02 09:19:52 cg Exp $'
       
    57 ! !
       
    58 
       
    59 InvalidTypeError initialize!