BadRomanNumberFormatError.st
changeset 11121 74f30d8404d6
parent 7586 63e4900c8931
child 17711 39faaaf888b4
equal deleted inserted replaced
11120:02bb5f001a25 11121:74f30d8404d6
     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 RomanNumberFormatError subclass:#BadRomanNumberFormatError
    14 RomanNumberFormatError subclass:#BadRomanNumberFormatError
    16 	instanceVariableNames:''
    15 	instanceVariableNames:''
    17 	classVariableNames:''
    16 	classVariableNames:''
    18 	poolDictionaries:''
    17 	poolDictionaries:''
    19 	category:'Kernel-Exceptions-Errors'
    18 	category:'Magnitude-Numbers'
    20 !
    19 !
    21 
    20 
    22 !BadRomanNumberFormatError class methodsFor:'documentation'!
    21 !BadRomanNumberFormatError class methodsFor:'documentation'!
    23 
    22 
    24 copyright
    23 copyright
    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 if a roman number is out of range (such as MMMMMM)
       
    40 "
    36 ! !
    41 ! !
    37 
    42 
    38 !BadRomanNumberFormatError class methodsFor:'documentation'!
    43 !BadRomanNumberFormatError class methodsFor:'documentation'!
    39 
    44 
    40 version
    45 version
    41     ^ '$Header: /cvs/stx/stx/libbasic/BadRomanNumberFormatError.st,v 1.2 2003-08-29 19:15:04 cg Exp $'
    46     ^ '$Header: /cvs/stx/stx/libbasic/BadRomanNumberFormatError.st,v 1.3 2008-08-06 09:52:59 cg Exp $'
    42 ! !
    47 ! !