Hi Tobias,
In my opinion, exception handling within the qx core should be avoided. All
exception handling in the core should be there for a reason and well
documented. When you find an exception handling, were documentation is missing
(why we do it) or you think it shouldn't be there, please op
I don't know if this addresses your issue exactly, but have you tried
disabling qx' global error handling? For your build jobs add:
"environment" : {
"qx.globalErrorHandling" : false
}
T.
On 01/26/2012 12:16 PM, Tobias Oetiker wrote:
> Often when I debug a qx application, I get bitt
Often when I debug a qx application, I get bitten by try catch blocks
that hide the actual problem.
The actual error is caught by some higher up try catch block and
replaced with a more generic error message, dropping the wording of
the origginal problem.
a) is there a policy on this within qx co