Make ConcurrencyException extend Error so it isn't cought by JavaScript try/catch.
This commit is contained in:
parent
f02fb895cd
commit
fbe488ec6e
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue