• HiddenLayer555
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    1 day ago

    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

    try {
        compileThisDamnProgram()
    } catch Exception {
        return -1
    }