cantankerous_cashew@lemmy.world to Programmer Humor · 3 days agoIn case you've ever wondered why the Windows control panel was so awful...lemmy.worldimagemessage-square69fedilinkarrow-up1529arrow-down110
arrow-up1519arrow-down1imageIn case you've ever wondered why the Windows control panel was so awful...lemmy.worldcantankerous_cashew@lemmy.world to Programmer Humor · 3 days agomessage-square69fedilink
minus-squareHiddenLayer555linkfedilinkEnglisharrow-up1·edit-21 day agoMy guess is that a stack trace is being generated, but something further down the chain is consuming it, realizes there’s an error, and just throws -1 instead of the stack trace itself. Something like try { compileThisDamnProgram() } catch Exception { return -1 }
My guess is that a stack trace is being generated, but something further down the chain is consuming it, realizes there’s an error, and just throws -1 instead of the stack trace itself.
Something like