cantankerous_cashew@lemmy.world to Programmer Humor@lemmy.ml · 3 days agoIn case you've ever wondered why the Windows control panel was so awful...lemmy.worldimagemessage-square70fedilinkarrow-up1524arrow-down110cross-posted to: programmer_humor@programming.dev
arrow-up1514arrow-down1imageIn case you've ever wondered why the Windows control panel was so awful...lemmy.worldcantankerous_cashew@lemmy.world to Programmer Humor@lemmy.ml · 3 days agomessage-square70fedilinkcross-posted to: programmer_humor@programming.dev
minus-squareHiddenLayer555@lemmy.mllinkfedilinkEnglisharrow-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