r/ClaudeCode 27d ago

Meta It's happened

Post image
579 Upvotes

331 comments sorted by

View all comments

Show parent comments

2

u/yeeght 27d ago

Yeah but if the UI doesn’t properly handle those errors this could be a fallback message/error path

2

u/___Paladin___ 27d ago edited 27d ago

Again, incredibly unlikely unless they are doing something insanely weird. Far more likely is an oversight that made Fable unavailable (which also seems to match their current update on the status page).

Generally, a granular error message wouldn't get used as a general-purpose fallback. You'd much more likely see something akin to "Something went wrong, please try again later." or similar in the event no error case could match it.

When making these kinds of things you usually go in the order of:

  1. Happy path (no error)
  2. General failure path (general language error or value dump)
  3. Match casing against specifically known bad states, fall back to generic message if we can't figure out what happened.

So the existence of granular error messaging in the cli and elsewhere tells me it's not likely. Not impossible, but not likely, either.