diff -r 0d7ac9096619 -r 92b4242b2b0b MethodNotAppropriateError.st --- a/MethodNotAppropriateError.st Thu Dec 05 09:52:02 2013 +0000 +++ b/MethodNotAppropriateError.st Tue Dec 17 20:21:42 2013 +0100 @@ -42,14 +42,27 @@ "Modified: / 02-11-2012 / 09:54:51 / cg" ! ! +!MethodNotAppropriateError methodsFor:'accessing'! + +messageSend + ^ suspendedContext sender messageSend +! ! + +!MethodNotAppropriateError methodsFor:'printing & storing'! + +description + ^ super description, ': ', suspendedContext sender printString +! ! + !MethodNotAppropriateError class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/MethodNotAppropriateError.st,v 1.1 2012-11-02 08:57:37 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/MethodNotAppropriateError.st,v 1.2 2013-12-06 14:32:12 stefan Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/MethodNotAppropriateError.st,v 1.1 2012-11-02 08:57:37 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/MethodNotAppropriateError.st,v 1.2 2013-12-06 14:32:12 stefan Exp $' ! ! + MethodNotAppropriateError initialize!