OverflowError.st
changeset 14869 9fa6e5ddbfda
parent 7586 63e4900c8931
child 18033 c90d8fdd805d
child 21990 7a56b05dae5e
equal deleted inserted replaced
14868:4a035ff126df 14869:9fa6e5ddbfda
     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 RangeError subclass:#OverflowError
    14 RangeError subclass:#OverflowError
    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     raised when the function-result overflows the allowed range.
       
    40     (Float overflow)
       
    41 "
    36 ! !
    42 ! !
    37 
    43 
    38 !OverflowError class methodsFor:'initialization'!
    44 !OverflowError class methodsFor:'initialization'!
    39 
    45 
    40 initialize
    46 initialize
    42 ! !
    48 ! !
    43 
    49 
    44 !OverflowError class methodsFor:'documentation'!
    50 !OverflowError class methodsFor:'documentation'!
    45 
    51 
    46 version
    52 version
    47     ^ '$Header: /cvs/stx/stx/libbasic/OverflowError.st,v 1.3 2003-08-29 19:14:41 cg Exp $'
    53     ^ '$Header: /cvs/stx/stx/libbasic/OverflowError.st,v 1.4 2013-03-13 23:43:48 cg Exp $'
    48 ! !
    54 ! !
    49 
    55 
       
    56 
    50 OverflowError initialize!
    57 OverflowError initialize!