GenericException.st
branchjv
changeset 17955 f5ee690b1a27
parent 17938 e2aad1d7c317
child 18011 deb0c3355881
--- a/GenericException.st	Fri Jul 20 14:32:04 2012 +0100
+++ b/GenericException.st	Wed Jul 25 09:45:15 2012 +0100
@@ -604,6 +604,19 @@
     "Created: / 23.7.1999 / 14:07:59 / stefan"
 !
 
+raiseIn:aContext
+    "raise a signal nonproceedable.
+     The signals notifierString is used as messageText."
+
+    <context: #return>
+    <resource: #skipInDebuggersWalkBack>
+
+    ^ self basicNew
+        raiseIn:aContext
+
+    "Created: / 27-01-2011 / 17:28:53 / cg"
+!
+
 raiseRequest
     "raise a signal proceedable.
      The signals notifierString is used as messageText."
@@ -2302,15 +2315,15 @@
 !GenericException class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.132 2012/04/03 18:34:13 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.133 2012/07/23 11:04:16 stefan Exp $'
 !
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.132 2012/04/03 18:34:13 stefan Exp §'
+    ^ '§Header: /cvs/stx/stx/libbasic/GenericException.st,v 1.133 2012/07/23 11:04:16 stefan Exp §'
 !
 
 version_SVN
-    ^ '$Id: GenericException.st 10804 2012-04-13 13:18:13Z vranyj1 $'
+    ^ '$Id: GenericException.st 10829 2012-07-25 08:45:15Z vranyj1 $'
 ! !
 
 GenericException initialize!