This is a discussion on Python’s forums about adding something akin to a throws keyword in python.

  • @CodeMonkey
    link
    78 months ago

    I also like checked exceptions. I like having a compile time check that I thought through error scenarios.

    Is it perfect? No, but it should be iterated upon, not discarded.

    FYI, catching and rethrowing as an unchecked exception is a pretty bad anti-patern (and a foul code smell).