GenericException.st
changeset 14241 a00234c7342f
parent 14085 aea63f5d809c
child 14962 2d0932f775a2
child 18011 deb0c3355881
--- 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!