-
Feature Request
-
Resolution: Done
-
Minor
-
1.6.0
-
None
I was trying to neutralize a thread using Byteman but unfortunately/fortunately the way Thread is written these days this is not so simple. The ThreadDeath raised by my rule by calling Thread.stop() (there is byteman specific way to do this killThread but that has the same issue) is handled by my code which is resilient and as such it catches RuntimeExceptions, it doesn't handle Errors though (due to domain specific justification).
Therefore I figured, OK, I will throw an Error in my rule to neutralize this thread.
Unfortunately byteman does not allow throwing undeclared Errors out of the target method of a rule. I have worked around this for now by declaring my method can throw an Error.
- is blocked by
-
BYTEMAN-156 Type checker should not generate error for THROW rule if exception is declared by rule target class but not by trigger class
- Closed