Exception.st
changeset 759 908363ce8a32
parent 662 df7953db3847
child 950 1ead6817a6c8
--- a/Exception.st	Fri Dec 15 00:05:12 1995 +0100
+++ b/Exception.st	Fri Dec 15 13:47:55 1995 +0100
@@ -12,7 +12,7 @@
 
 Object subclass:#Exception
 	 instanceVariableNames:'signal parameter errorString suspendedContext handlerContext
-                rejected originator resumeBlock rejectBlock'
+		rejected originator resumeBlock rejectBlock'
 	 classVariableNames:'EmergencyHandler RecursiveExceptionSignal'
 	 poolDictionaries:''
 	 category:'Kernel-Exceptions'
@@ -234,7 +234,7 @@
 
 rejected
     "return true, if any other of the exceptions handlers has rejected 
-     Uncertain, if this is really interresting to anybody.
+     Uncertain, if this is really interesting to anybody.
      This is only valid during handler execution.
      (i.e. an outer handler can find out, if any other handler has already
      rejected).
@@ -496,6 +496,6 @@
 !Exception class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Exception.st,v 1.29 1995-12-03 12:35:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Exception.st,v 1.30 1995-12-15 12:47:32 cg Exp $'
 ! !
 Exception initialize!