added: #raiseIn:
authorStefan Vogel <sv@exept.de>
Mon, 23 Jul 2012 13:04:16 +0200
changeset 14241 a00234c7342f
parent 14240 daae10e423d8
child 14242 45d070e53b95
added: #raiseIn:
GenericException.st
--- a/GenericException.st	Mon Jul 23 12:17:39 2012 +0200
+++ b/GenericException.st	Mon Jul 23 13:04:16 2012 +0200
@@ -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,11 +2315,11 @@
 !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 $'
 ! !
 
 GenericException initialize!