UnorderedNumbersError.st
changeset 14872 4f25a33c51aa
parent 7585 87d76b40f897
child 18033 c90d8fdd805d
equal deleted inserted replaced
14871:281b5dc66843 14872:4f25a33c51aa
     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 ArithmeticError subclass:#UnorderedNumbersError
    14 ArithmeticError subclass:#UnorderedNumbersError
    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 unordered numbers are compared (i.e. complex number comparison)
       
    40 "
    36 ! !
    41 ! !
    37 
    42 
    38 !UnorderedNumbersError class methodsFor:'initialization'!
    43 !UnorderedNumbersError class methodsFor:'initialization'!
    39 
    44 
    40 initialize
    45 initialize
    42 ! !
    47 ! !
    43 
    48 
    44 !UnorderedNumbersError class methodsFor:'documentation'!
    49 !UnorderedNumbersError class methodsFor:'documentation'!
    45 
    50 
    46 version
    51 version
    47     ^ '$Header: /cvs/stx/stx/libbasic/UnorderedNumbersError.st,v 1.4 2003-08-29 19:10:44 cg Exp $'
    52     ^ '$Header: /cvs/stx/stx/libbasic/UnorderedNumbersError.st,v 1.5 2013-03-13 23:44:03 cg Exp $'
    48 ! !
    53 ! !
    49 
    54 
       
    55 
    50 UnorderedNumbersError initialize!
    56 UnorderedNumbersError initialize!