Skip to content

Commit 37d0ce6

Browse files
committed
handle all Throwables during agent actions
1 parent 02157fa commit 37d0ce6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jvm/clojure/lang/Agent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ static void doRun(Action action){
7070
if(changed)
7171
action.agent.notifyWatches();
7272
}
73-
catch(Exception e)
73+
catch(Throwable e)
7474
{
7575
//todo report/callback
7676
action.agent.errors = RT.cons(e, action.agent.errors);

0 commit comments

Comments
 (0)