ArithmeticError.st
changeset 14873 299531a3c932
parent 8746 5d75855c2d07
child 18033 c90d8fdd805d
child 20446 a1de1ff6cddd
equal deleted inserted replaced
14872:4f25a33c51aa 14873:299531a3c932
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
    14 
    13 
    15 ProceedableError subclass:#ArithmeticError
    14 ProceedableError subclass:#ArithmeticError
    16 	instanceVariableNames:''
    15 	instanceVariableNames:''
    17 	classVariableNames:''
    16 	classVariableNames:''
    31  inclusion of the above copyright notice.   This software may not
    30  inclusion of the above copyright notice.   This software may not
    32  be provided or otherwise made available to, or used by, any
    31  be provided or otherwise made available to, or used by, any
    33  other person.  No title to or ownership of the software is
    32  other person.  No title to or ownership of the software is
    34  hereby transferred.
    33  hereby transferred.
    35 "
    34 "
       
    35 !
       
    36 
       
    37 documentation
       
    38 "
       
    39      common superclass for all arithmetic errors.
       
    40 "
    36 ! !
    41 ! !
    37 
    42 
    38 !ArithmeticError class methodsFor:'documentation'!
    43 !ArithmeticError class methodsFor:'documentation'!
    39 
    44 
    40 version
    45 version
    41     ^ '$Header: /cvs/stx/stx/libbasic/ArithmeticError.st,v 1.7 2005-02-16 15:31:43 cg Exp $'
    46     ^ '$Header: /cvs/stx/stx/libbasic/ArithmeticError.st,v 1.8 2013-03-13 23:44:07 cg Exp $'
    42 ! !
    47 ! !
       
    48