This website works better with JavaScript.
Home
Explore
Help
Sign In
ymlam
/
CommEngine
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
52
Wiki
Activity
Browse Source
Again separate out EngineException from any Throwable.
tags/Production_5_21_2012
ymlam
13 years ago
parent
277dc42365
commit
0b1be67bbc
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
src/altk/comm/engine/Broadcast.java
+ 4
- 0
src/altk/comm/engine/Broadcast.java
View File
@@ -306,6 +306,10 @@ public abstract class Broadcast
{
terminate(BroadcastState.ABORTED, e.getMessage());
}
catch (Throwable t)
{
terminate(BroadcastState.ABORTED, t + ": " + t.getMessage());
}
}
}
}
Write
Preview
Loading…
Cancel
Save