Tagged Questions

3
votes
5answers
722 views

Fail fast finally clause in Java

Is there a way to detect, from within the finally clause, that an exception is in the process of being thrown? ie: try { // code that may or may not throw an exception } finally { ...
1
vote
1answer
35 views

Code that detects its own bugs?

Consider the following code snippet: int index = FindClosestIndex(frame); if (_data[index].Frame == frame) return _data[index]; else return interpolateData(frame, _data[index - 1], ...