this post was submitted on 22 Mar 2025
752 points (99.0% liked)

Programmer Humor

21893 readers
1976 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] fuzzzerd@programming.dev 20 points 4 days ago (1 children)

What about both? User supplies bad input? HTTP 400 with response body json describing the error in a standard format?

[–] bountygiver@lemmy.ml 7 points 4 days ago (1 children)

when you are too lazy to ask your request library to not throw exception on non-200 responses.

[–] dan@upvote.au 5 points 4 days ago

Throwing exceptions is fine since errors are an exceptional circumstance (not expected during normal use of the app), and you probably want errors to follow a different code path so that they can be logged, alerts triggered if needed, etc.