GenericException.st
changeset 23029 05833aa782e3
parent 22798 fbfb1f60ce4b
child 23232 d46d79fcfddf
--- a/GenericException.st	Sat May 26 14:06:12 2018 +0200
+++ b/GenericException.st	Mon May 28 12:53:49 2018 +0200
@@ -226,6 +226,7 @@
     self raiseErrorString:messageText
 ! !
 
+
 !GenericException class methodsFor:'accessing'!
 
 errorString
@@ -1232,18 +1233,6 @@
     ^ self restartDo:alternativeBlock
 !
 
-signal
-    "raise a signal proceedable or nonproceedable (whichever is right).
-     ANSI compatibility."
-
-    ^ self raise
-
-    "
-     Error new signal
-     Error new raiseSignal
-    "
-!
-
 signalWith:messageTextArg
     "raise a signal proceedable or nonproceedable (whichever is right).
      The argument is used as messageText.
@@ -2494,6 +2483,14 @@
 
 !GenericException methodsFor:'testing'!
 
+isBridgeException
+    "do not make this an extension method of the Bridge-package"
+    
+    ^ false
+
+    "Created: / 28-05-2018 / 12:53:43 / Claus Gittinger"
+!
+
 isError
     ^ false
 !