NotFoundError.st
changeset 15181 bd22e5577a0d
parent 8483 3e76a8fe740a
child 18057 8da7c39a6322
child 20438 d694d6e9b445
equal deleted inserted replaced
15180:33a5420b968d 15181:bd22e5577a0d
     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 ProceedableError subclass:#NotFoundError
    14 ProceedableError subclass:#NotFoundError
    16 	instanceVariableNames:''
    15 	instanceVariableNames:''
    17 	classVariableNames:''
    16 	classVariableNames:''
    39 "
    38 "
    40     raised when a value was not found in a collection
    39     raised when a value was not found in a collection
    41 "
    40 "
    42 ! !
    41 ! !
    43 
    42 
       
    43 !NotFoundError class methodsFor:'initialization'!
       
    44 
       
    45 initialize
       
    46     NotifierString := 'no such element'.
       
    47 
       
    48     "
       
    49      self initialize
       
    50     "
       
    51 ! !
       
    52 
    44 !NotFoundError class methodsFor:'documentation'!
    53 !NotFoundError class methodsFor:'documentation'!
    45 
    54 
    46 version
    55 version
    47     ^ '$Header: /cvs/stx/stx/libbasic/NotFoundError.st,v 1.4 2004-08-22 17:47:38 stefan Exp $'
    56     ^ '$Header: /cvs/stx/stx/libbasic/NotFoundError.st,v 1.5 2013-04-27 10:05:48 cg Exp $'
    48 ! !
    57 ! !
       
    58 
       
    59 
       
    60 NotFoundError initialize!