()
| 85 | } |
| 86 | |
| 87 | void execute(){ |
| 88 | try |
| 89 | { |
| 90 | exec.execute(this); |
| 91 | } |
| 92 | catch(Throwable error) |
| 93 | { |
| 94 | if(agent.errorHandler != null) |
| 95 | { |
| 96 | try |
| 97 | { |
| 98 | agent.errorHandler.invoke(agent, error); |
| 99 | } |
| 100 | catch(Throwable e) {} // ignore errorHandler errors |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | static void doRun(Action action){ |
| 106 | try |