IndexNotFoundError.st
changeset 15182 ddb7fa253e3a
parent 7586 63e4900c8931
child 18057 8da7c39a6322
child 20449 8be99d55b49e
equal deleted inserted replaced
15181:bd22e5577a0d 15182:ddb7fa253e3a
     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 NotFoundError subclass:#IndexNotFoundError
    14 NotFoundError subclass:#IndexNotFoundError
    16 	instanceVariableNames:''
    15 	instanceVariableNames:''
    17 	classVariableNames:''
    16 	classVariableNames:''
    39 "
    38 "
    40     raised when a bad index/key is used when accessing a collection.
    39     raised when a bad index/key is used when accessing a collection.
    41 "
    40 "
    42 ! !
    41 ! !
    43 
    42 
       
    43 !IndexNotFoundError class methodsFor:'initialization'!
       
    44 
       
    45 initialize
       
    46     NotifierString := 'bad index: '.
       
    47 
       
    48     "
       
    49      self initialize
       
    50     "
       
    51 ! !
       
    52 
    44 !IndexNotFoundError class methodsFor:'documentation'!
    53 !IndexNotFoundError class methodsFor:'documentation'!
    45 
    54 
    46 version
    55 version
    47     ^ '$Header: /cvs/stx/stx/libbasic/IndexNotFoundError.st,v 1.3 2003-08-29 19:14:40 cg Exp $'
    56     ^ '$Header: /cvs/stx/stx/libbasic/IndexNotFoundError.st,v 1.4 2013-04-27 10:06:42 cg Exp $'
    48 ! !
    57 ! !
       
    58 
       
    59 
       
    60 IndexNotFoundError initialize!