UnderflowError.st
changeset 21989 e88b6fff98c7
parent 14871 281b5dc66843
equal deleted inserted replaced
21988:e3f286797775 21989:e88b6fff98c7
     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 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 RangeError subclass:#UnderflowError
    16 RangeError subclass:#UnderflowError
    15 	instanceVariableNames:''
    17 	instanceVariableNames:''
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
    34 "
    36 "
    35 !
    37 !
    36 
    38 
    37 documentation
    39 documentation
    38 "
    40 "
    39     raised when the function-result underflows the allowed range.
    41     raised when the function-result overflows the allowed range,
    40     (Float underflow)
    42     or when some other number (fraction) cannot be represented as instance of a particular
       
    43     floating point format (Float underflow).
       
    44 
       
    45     This error is usually proceedable and 0 is returned as result then.
    41 "
    46 "
    42 ! !
    47 ! !
    43 
    48 
    44 !UnderflowError class methodsFor:'initialization'!
    49 !UnderflowError class methodsFor:'initialization'!
    45 
    50 
    48 ! !
    53 ! !
    49 
    54 
    50 !UnderflowError class methodsFor:'documentation'!
    55 !UnderflowError class methodsFor:'documentation'!
    51 
    56 
    52 version
    57 version
    53     ^ '$Header: /cvs/stx/stx/libbasic/UnderflowError.st,v 1.4 2013-03-13 23:43:59 cg Exp $'
    58     ^ '$Header$'
    54 ! !
    59 ! !
    55 
    60 
    56 
    61 
    57 UnderflowError initialize!
    62 UnderflowError initialize!