GenericException.st
changeset 23300 b0be6a74b979
parent 23232 d46d79fcfddf
child 23307 5698a876ea2c
--- a/GenericException.st	Sun Aug 26 21:43:06 2018 +0200
+++ b/GenericException.st	Tue Aug 28 11:00:00 2018 +0200
@@ -534,6 +534,14 @@
     ^ false
 !
 
+isAcceptedBy:aHandlerSignal
+    "return true, if aHandlerSignal accepts the receiver."
+
+    ^ aHandlerSignal accepts:self
+
+    "Created: / 28-08-2018 / 10:56:58 / Claus Gittinger"
+!
+
 isHandled
     "return true, if there is a handler for the receiver signal.
      Raising an unhandled signal will usually lead into the debugger,