From fbe488ec6e103f5f13fdbed5f33b5f1a4652ca9d Mon Sep 17 00:00:00 2001 From: hns Date: Mon, 26 Apr 2004 09:08:45 +0000 Subject: [PATCH] Make ConcurrencyException extend Error so it isn't cought by JavaScript try/catch. --- src/helma/objectmodel/ConcurrencyException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/objectmodel/ConcurrencyException.java b/src/helma/objectmodel/ConcurrencyException.java index d495e9c2..621ada77 100644 --- a/src/helma/objectmodel/ConcurrencyException.java +++ b/src/helma/objectmodel/ConcurrencyException.java @@ -21,7 +21,7 @@ package helma.objectmodel; * Thrown when more than one thrad tries to modify a Node. The evaluator * will normally catch this and try again after a period of time. */ -public class ConcurrencyException extends RuntimeException { +public class ConcurrencyException extends Error { /** * Creates a new ConcurrencyException object. *