KeyNotFoundError.st
changeset 22916 ecf1255014d0
parent 17684 feb6c78d835d
equal deleted inserted replaced
22915:fe71dca059bf 22916:ecf1255014d0
       
     1 "{ Encoding: utf8 }"
       
     2 
     1 "
     3 "
     2  COPYRIGHT (c) 2001 by eXept Software AG
     4  COPYRIGHT (c) 2001 by eXept Software AG
     3               All Rights Reserved
     5               All Rights Reserved
     4 
     6 
     5  This software is furnished under a license and may be used
     7  This software is furnished under a license and may be used
    50     "
    52     "
    51      self initialize
    53      self initialize
    52     "
    54     "
    53 ! !
    55 ! !
    54 
    56 
       
    57 !KeyNotFoundError methodsFor:'Compatibility-Squeak'!
       
    58 
       
    59 key:theBadKey
       
    60     "the index, which was not found"
       
    61 
       
    62     parameter := theBadKey
       
    63 ! !
       
    64 
    55 !KeyNotFoundError methodsFor:'accessing'!
    65 !KeyNotFoundError methodsFor:'accessing'!
    56 
    66 
    57 index
    67 index
    58     "the index, which was not found"
    68     "the index, which was not found"
    59 
    69 
    61 ! !
    71 ! !
    62 
    72 
    63 !KeyNotFoundError class methodsFor:'documentation'!
    73 !KeyNotFoundError class methodsFor:'documentation'!
    64 
    74 
    65 version
    75 version
    66     ^ '$Header: /cvs/stx/stx/libbasic/KeyNotFoundError.st,v 1.3 2015-03-26 13:21:27 cg Exp $'
    76     ^ '$Header$'
    67 ! !
    77 ! !
    68 
    78 
    69 
    79 
    70 KeyNotFoundError initialize!
    80 KeyNotFoundError initialize!