# HG changeset patch # User Claus Gittinger # Date 1526258161 -7200 # Node ID ecf1255014d0e846ef485349d3f96970829e79df # Parent fe71dca059bf805b261841c476b425efed33293d #FEATURE by cg class: KeyNotFoundError added: #key: diff -r fe71dca059bf -r ecf1255014d0 KeyNotFoundError.st --- a/KeyNotFoundError.st Sun May 13 20:32:55 2018 +0200 +++ b/KeyNotFoundError.st Mon May 14 02:36:01 2018 +0200 @@ -1,3 +1,5 @@ +"{ Encoding: utf8 }" + " COPYRIGHT (c) 2001 by eXept Software AG All Rights Reserved @@ -52,6 +54,14 @@ " ! ! +!KeyNotFoundError methodsFor:'Compatibility-Squeak'! + +key:theBadKey + "the index, which was not found" + + parameter := theBadKey +! ! + !KeyNotFoundError methodsFor:'accessing'! index @@ -63,7 +73,7 @@ !KeyNotFoundError class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/KeyNotFoundError.st,v 1.3 2015-03-26 13:21:27 cg Exp $' + ^ '$Header$' ! !