Make ConcurrencyException extend Error so it isn't cought by JavaScript try/catch.

This commit is contained in:
hns 2004-04-26 09:08:45 +00:00
parent f02fb895cd
commit fbe488ec6e

View file

@ -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.
*