*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 23 Jan 1997 00:15:43 +0100
changeset 2231 88ffbbaf1986
parent 2230 b7a86880ab9c
child 2232 1d184023197f
*** empty log message ***
Object.st
--- a/Object.st	Thu Jan 23 00:13:23 1997 +0100
+++ b/Object.st	Thu Jan 23 00:15:43 1997 +0100
@@ -19,7 +19,8 @@
 		ElementOutOfBoundsSignal UserNotificationSignal InformationSignal
 		WarningSignal PrimitiveFailureSignal DeepCopyErrorSignal
 		AbortSignal ErrorRecursion Dependencies InfoPrinting
-		ActivityNotificationSignal InternalErrorSignal NonWeakDependencies'
+		ActivityNotificationSignal InternalErrorSignal
+		NonWeakDependencies'
 	poolDictionaries:''
 	category:'Kernel-Objects'
 !
@@ -2105,15 +2106,13 @@
 cannotSendMessage:aMessage to:someReceiver
     "this message is sent by the runtime system (VM),
      when a message is sent to some object, whose class is not
-     a valid behavior (see documentation in Behavior).
-     A Class may redefine this, to implement its own method lookup
-     mechanism, and may possibly invoke some method manually, or fail.
-     Attention: this is expert stuff (pure magic).
-     Be careful - you must know exactly what you do here."
+     a valid behavior (see documentation in Behavior)."
 
     ^ InternalErrorSignal
           raiseRequestWith:someReceiver
-          errorString:('bad class in send of ' , aMessage selector)
+          errorString:('bad class in send of #' , aMessage selector)
+
+    "Modified: 23.1.1997 / 00:05:39 / cg"
 !
 
 doesNotUnderstand:aMessage
@@ -5565,6 +5564,6 @@
 !Object class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.167 1997-01-22 22:14:09 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.168 1997-01-22 23:15:43 cg Exp $'
 ! !
 Object initialize!