UserPreferences.st
changeset 12563 739edda3428d
parent 12562 44c6c9d39062
child 12618 2bb3603e728a
--- a/UserPreferences.st	Thu Nov 19 14:26:27 2009 +0100
+++ b/UserPreferences.st	Fri Nov 20 15:41:30 2009 +0100
@@ -682,6 +682,17 @@
     "Created: / 20-09-2007 / 15:59:58 / cg"
 !
 
+soapErrorDebugging
+    "open a debugger on error, or report it as a soap-error"
+
+    ^ self at:#soapErrorDebugging ifAbsent:false
+!
+
+soapErrorDebugging:aBoolean
+    "open a debugger on error, or report it as a soap-error"
+    ^ self at:#soapErrorDebugging put:aBoolean
+!
+
 soapLoggingLevel
     ^ self at:#soapLoggingLevel ifAbsent:nil
 !
@@ -3026,9 +3037,9 @@
 !UserPreferences class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.239 2009-11-19 13:26:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.240 2009-11-20 14:41:30 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.239 2009-11-19 13:26:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.240 2009-11-20 14:41:30 cg Exp $'
 ! !